$(function(){
	/******** STANDARD SYNCSHOW BLOCK **********/
	//INJECT THE DATE INTO THE FOOTER
	var d=new Date();
    $("#currentYear").html( d.getFullYear() );
    //NYROMODAL LIVE UPDATING FOR FUTURE DOM OBJECTS
    $('.nyroModal').live('mouseover',function(){ $(this).nyroModal(); });
    $.nyroModalSettings({ minHeight: 200 });
    //USE "sstip" CLASS TO DISPLAY TOOL TIP OFF TITLE ATTR
    $(".sstip").live('mouseover',function(){ $(".aToolTip").remove(); $(this).aToolTip().mouseover(); });
    //ACCORDION
	$(".sectionContent").attr("style", "display: none;");
	$(".sectionContent:first").attr("style", "");
	$(".sectionTitle").click(function(event){
		if(!$(this).hasClass("fullContent")){
			$(".sectionContent").slideUp("normal");
			$(".sectionTitle").removeClass("fullContent");
			$(this).toggleClass("fullContent");
			$(".sectionContent", this).slideDown("normal");
		}
	});    
	/******** END SYNCSHOW BLOCK **********/
    
    $('#home_flash_image').flash({
    	swf: '/syncshow/style/images/homeFlash/homeFlashFAQ.swf',   
    	width: 729,
    	height: 298,   
    	params: {   
    		play:true, 
    		allowScriptAccess: 'sameDomain',   
    		quality: 'high', 
    		bgcolor:'#FFFFFF', 
    		wmode:'transparent', 
    		scale:'showall', 
    		menu:'false',
    		flashvars: {}
    	}
    });

});


/*** FUNCTIONS ***/

