jQuery(document).ready(function(){
						   jQuery("#powered a").fadeTo("normal", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   jQuery("#powered a").hover(function(){
						   jQuery(this).fadeTo("fast", 0.8);
						   },function(){
						   jQuery(this).fadeTo("fast", 1.0);
							   	});
						   });

jQuery(document).ready(function(){
						   jQuery('div.slide').hover(function(){
						   jQuery("div.slideText", this).stop().animate({top:'450px'},{queue:false,duration:400});
						   }, function() {
						   jQuery("div.slideText", this).stop().animate({top:'370px'},{queue:false,duration:400});
						   		});
						   });
jQuery(document).ready(function(){
						   jQuery('div.portfolioTemplate').hover(function(){
						   jQuery("div.portfolioTemplateText", this).stop().animate({top:'20px'},{queue:false,duration:400});
						   }, function() {
						   jQuery("div.portfolioTemplateText", this).stop().animate({top:'-75px'},{queue:false,duration:400});
						   		});
						   });
jQuery(document).ready(function(){
						jQuery("blockquote").append("<div class='quote_bottom'></div>");
						});
