$(document).ready(function() {
	width=(document.getElementById('content').offsetWidth-960)/2;
	if(width<=0){width=0;}
	$('#header_bg_right').css('width', width+'px');
	$('#header_bg_right').css('right', '-'+width+'px');
	$('#footer_bg_right').css('width', width+'px');
	$('#footer_bg_right').css('right', '-'+width+'px');
	
	
	$('ul li:has(ul)').hover( 
      function(e) 
      { 
         $(this).find('ul').css({display: "block"}); 
      }, 
      function(e) 
      { 
         $(this).find('ul').css({display: "none"}); 
      } 
   	); 
	
	
	$(function() {
		$('.gallery_image a').lightBox({fixedNavigation:true});
	});
	
	
	$('.coupon_item').click(function(){
		src=$('#coupon_1 img').attr('src');							 
		coupon=$(this).html();
		coupon=coupon.replace("thumb", "full");
		coupon=coupon.replace("280", "580");
		$('#coupon_1').html(coupon);
		$('#coupon_1').attr('title',this.id);
	});
	
	$('#print').click(function(){
			openwindow(SITE_URL+'/en/coupons/print_coupon/'+$('#coupon_1').attr('title'));						   
	});
	
	function openwindow (page) {
		var option="toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=yes, width=580, height=230, top=85, left=140";
		window.open(page,"",option);
	}
	
	$('.languaje').click(function(){
		languaje=$(this).attr('rel');
		url=window.location.pathname;
		if(languaje=='sp'){
			url2=url.replace("/en/", "/sp/");
			if(url2==url){
				url2=SITE_URL+'/sp/home';
			}
		}
		else if(languaje=='en'){
			url2=url.replace("/sp/", "/en/");
		}
		
		location.href=url2;
	});
});
