var h1color;

$(document).ready(function(){
	//Homepage flash stuff
	if($("#main-feature").length > 0) {
		var so = new SWFObject("/_ptwp_live_ect0/wp-content/themes/ptcom/swf/rotator.swf", "flashRotator", 900, 369, "9", "#ffffff");
		so.addVariable("movieurl1", "/_ptwp_live_ect0/wp-content/uploads/2009/03/pencilpaper.swf");
		so.addVariable("movieurl2", "/_ptwp_live_ect0/wp-content/uploads/2009/03/dropyourproblems.swf");
		so.addParam("menu", "false");
		so.addParam("allowFullScreen", "true");
		so.useExpressInstall("/_ptwp_live_ect0/wp-content/themes/ptcom/swf/expressinstall.swf");
		so.write("main-feature");
	}	
	//Homepage sub features
	$("div.sub-feature img").hover(function () { //Over
		$(this).stop().animate({top: -80}, 300);
		
	}, function() { //Out
		$(this).stop().animate({top: 0}, 300);
	});
	
});

