$(document).ready(function() {
	$("a.zoom").fancybox({
		'zoomSpeedIn':	600, 
		'zoomSpeedOut':	400,
		'zoomOpacity': 	true
	});
	$("tr:nth-child(even)").addClass("trf");
	
	$('#header_search_form input').css('opacity', '0.7');
	
	$('.eShop').each(function(){
		thisWidth = parseInt($(this).find('embed').attr('width'));
		thisHeight = parseInt($(this).find('embed').attr('height'));
		thisDiv = $('.eShop').index(this);
		
		$(this).width(thisWidth);
		$(this).height(thisHeight);
		
		$('.eShop div:eq(' + thisDiv + ')').add('.eShop img:eq(' + thisDiv + ')').width(thisWidth);
		$('.eShop div:eq(' + thisDiv + ')').add('.eShop img:eq(' + thisDiv + ')').height(thisHeight);
	});
	
});