//IE7 Fix 

//Written by Charles Voita
//Version 1.0

$(document).ready(function(){ 
						   
	$("..fade_blue [id]").each(function(){
	
		$(this).stop().animate({"opacity": "0"}, "medium");


	});
	$(".thumb img").each(function(){
	
		$(this).stop().animate({"opacity": ".4"}, "medium");


	});
		$(".thumb_selected img").each(function(){
	
		$(this).stop().animate({"opacity": ".8"}, "medium");


	});
		$("#next_arrow").each(function(){
	
		$(this).stop().animate({"opacity": ".4"}, "medium");


	});
		$("#last_arrow").each(function(){
	
		$(this).stop().animate({"opacity": ".4"}, "medium");


	});
		$("#last_box").each(function(){
	
		$(this).stop().animate({"opacity": "0"}, "medium");


	});
		$("#next_box").each(function(){
	
		$(this).stop().animate({"opacity": "0"}, "medium");


	});


});

