﻿			var flashvars = {};
			var params = {wmode: "transparent"};
			var attributes = {};
			swfobject.embedSWF("flash/home.swf", "myContent", "850", "300", "9.0.0","flash/expressInstall.swf", flashvars, params, attributes);


$(document).ready(function(){



		$("a").fadeTo("slow", 1.0); // This sets the opacity of the thumbs to 100% when the page loads
		$("a").hover(function(){
		$(this).fadeTo("fast", 0.4); // This should set the opacity to 60% on hover
		},function(){
		$(this).fadeTo("slow", 1.0); // This should set the opacity back to 1000% on mouseout
		});


		$('.quotebox').cycle({ 
			fx:      'scrollUp',
			timeout:  4000,
			speed:    1200,
//			next:   '.leftNewsBar', 
//			easing: 'backinout', 
			pause:  1 
		});		
});

