//$("#tabs_rates, #tabs_comments").tabs();
//Cufon.replace('h3');

$(document).ready(function(){
	$("form input, form select").focus(function() {
		$(this).prev("label").css({"font-weight" : "bold", "color" : "black"});								   										   
	});
	
	$("form input, form select").blur(function() {
		$(this).prev("label").css({"font-weight" : "normal", "color" : "#646256"});								   										   
	});


	function runEffect() {
    setTimeout(function(){
        var selectedEffect = 'blind';
        var options = {};
        //$(".flash").animate({opacity: "hide"}, 1000)
     	$(".flashWrapp").slideUp("fast")
	 }, 5000);
	}
	runEffect();

});

