jQuery(document).ready(function () {  
	
	
	$(document).pngFix();
	
	$("div#series_types .img_box span").hide();
			
	$("div.options img:first").css("margin-left", "10px").css("margin-top", "40px");		
	$("div.contours img:first").css("margin-left", "10px").css("margin-top", "30px");			
	$("div.corners img:first").css("margin-left", "10px").css("margin-top", "30px");		
	$("div.orientation img:first").css("margin-left", "10px").css("margin-top", "25px");		
	$("div.logos img:first").css("margin-left", "10px").css("margin-top", "25px");		
	$("div.option_items:gt(0)").css("margin-left", "10px").css("border-left", "solid 1px #FFF");		
			
	$("table.stripe tr:nth-child(even)").addClass("striped");				
			
	$("div#series_types img").hover(function() {
		$(this).parent().find("span").slideDown('fast').show();
		
		$(this).parent().hover(function() {
		}, function(){
			$(this).parent().find("span").hide('slow');
		
		});
		return false;		
	});

});




