//JQUERY
$(document).ready(function() {			 
	$("#msg").fadeIn("slow");
	
	
	//FAQs slider
	$("dd").hide();
	$("dt a").click(function(){
    	$(this).parent().next("dd:first").slideDown("slow");
		
		if ($(this).parent().next("dd:first").is(":hidden")) {
        	$(this).parent().next("dd:first").slideDown("normal");
      	} else {
        	$(this).parent().next("dd:first").hide();
      	}

    	return false;
	});
	
	//Testimonials slider
	$("#slider").easySlider({
		prevText:'NEXT',
		nextText:'PREV',
		orientation:'horizontal'
	});


	pngfix();
});// document ready

document.execCommand("BackgroundImageCache",false,true);