
jQuery(document).ready(function(){
	//jQuery('#banners-items').cycle({fx:'scrollRight'});
	jQuery(document).pngFix();
	jQuery('.menup').css({opacity:.7})
	.live('mouseover',function(){jQuery(this).animate({opacity:1},300)})
	.live('mouseout',function(){jQuery(this).animate({opacity:0.7},300);});
	jQuery('a[href*=.pdf]').live('click',function(e){
		e.preventDefault();
		window.open(this.href,'_blank','status=1,width=1000,height=700,scrollbars=yes,resizable=yes');
	});
	jQuery('.langactual').css({opacity:0.7,'cursor':'default'}).parent('a').click(function(e){e.preventDefault();});
	
	jQuery('#fotos a img').hover(function(){
		jQuery(this).animate({opacity:0.7},300);
	},function(){
		jQuery(this).animate({opacity:1},300);
	});
	
	//jQuery('.actual').click(function(e){e.preventDefault();jQuery(this).blur();});
	
	jQuery('#fotos a').lightBox();
	jQuery('#tiendas').change(function(){
		window.location=jQuery(this).val();
	});
	
	jQuery('.linkemodula').css({'cursor':'pointer'}).click(function(){window.location='/';});
	
});

