
Cufon.replace('#nav a:not(#nav li li a)', {fontWeight: 400, textShadow: '1px 1px #571c3a'});
Cufon.replace('#nav li li a', {fontWeight: 700, hover: true});
Cufon.replace('.big-buttons a', {fontWeight: 300});
Cufon.replace('.big-buttons span, .news h2', {fontWeight: 400});

$(function() {

    $('#nav li:not(#nav li li)').hover(function () {
        $(this).children('a:first-child').css('backgroundPosition', 'center bottom');
        $(this).children('ul').slideDown(500);
    }, function () {
        $(this).children('a:first-child').css('backgroundPosition', 'center top');
        $(this).children('ul').slideUp(200);
    });

	
	$('#btn-signin').hover(function() {
		$(this).parent().addClass('hover');
	},function() {
		$(this).parent().removeClass('hover');
	});
	
    $(".frm-textb").focus(function(srcc) {
        if ($(this).val() == $(this)[0].title) {
            $(this).val("");
        }
    });
    $(".frm-textb").blur(function() {
        if ($(this).val() == "") {
            $(this).val($(this)[0].title);
        }
    });
    $(".frm-textb").blur();  
});
