
$(document).ready(function() {
	//in JS mode
	$('html').addClass('js');

	//shop new window
	$('#header .shop').click(function(e) {
		e.preventDefault();
		var popup = window.open(this.href, 'shop');
		popup.focus();
	});
	
		//subscribe form colorbox
	$('#header .subscribe').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:761,
			innerHeight:514,
			opacity:0.8,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
	
		//subscribe form colorbox
	$('#subNav .contact').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:661,
			innerHeight:514,
			opacity:0.1,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
	
		//subscribe form colorbox
	$('#subNav .zhanshi').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:963,
			innerHeight:770,
			opacity:0.8,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
	
	
	
		$('#subNav2 .contact').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:661,
			innerHeight:514,
			opacity:0.8,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
	
		//subscribe form colorbox
	$('#subNav2 .zhanshi').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:963,
			innerHeight:770,
			opacity:0.8,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
	
		$('#header .contact').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:346,
			innerHeight:420,
			opacity:0.8,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
		
		

	//subscribe form colorbox
	$('#footer .subscribe').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:761,
			innerHeight:314,
			opacity:0.8,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
	
	//contact form colorbox
	$('#footer .contact').click(function() {
		var href = this.href+'?compact=true';
		$(this).colorbox({
			href: href,
			iframe:true,
			innerWidth:520,
			innerHeight:620,
			opacity:0.8,
			transition:'fade',
			scrolling:false,
			close: LANG["close"]
		});
	});
	
	//website credits
	var cTimer = null, bottom = 0, padding = parseInt($('#footer').css('paddingTop'))+parseInt($('#footer').css('paddingBottom'));
	$('a.websiteCredits').click(function(e) {
		e.preventDefault();
		bottom = $('#footer').height()+padding;
		if ($('#websiteCredits').is(':hidden')) {
			$('#websiteCredits').css('bottom',bottom).slideDown(400);
			cTimer = setTimeout(function() {
				$('#websiteCredits').css('bottom',bottom).slideUp(400);
			}, 5000);
		} else {
			$('#websiteCredits').css('bottom',bottom).slideUp(400);
		}
	});
});
