$(document).ready(function(){
	var loc = location;
	if(loc=='http://gammaukr.com.ua/%D0%9E-%D0%BD%D0%B0%D1%81/'||loc=='http://gammaukr.com.ua/%D0%9E-%D0%BD%D0%B0%D1%81.html'||loc=='http://gammaukr.com.ua/%D0%9E-%D0%BD%D0%B0%D1%81/%D0%98%D1%81%D1%82%D0%BE%D1%80%D0%B8%D1%8F-%D0%BD%D0%B0%D0%B3%D1%80%D0%B0%D0%B4%D1%8B.html'||loc=='http://gammaukr.com.ua/%D0%9E-%D0%BD%D0%B0%D1%81/%D0%9F%D1%80%D0%B5%D1%81%D1%81%D0%B0-%D0%BE-%D0%BD%D0%B0%D1%81.html'||loc=='http://gammaukr.com.ua/%D0%9E-%D0%BD%D0%B0%D1%81/%D0%9A%D0%BE%D0%BD%D1%82%D0%B0%D0%BA%D1%82%D1%8B.html'||loc=='http://gammaukr.com.ua/%D0%9E-%D0%BD%D0%B0%D1%81/%D0%92%D0%B0%D0%BA%D0%B0%D0%BD%D1%81%D0%B8%D0%B8.html'){
		$('.autocatalogConteiner').css({display:'none'});
		$('.newsConteiner').css({width:'100%'});
	}
	var ge = get_cookie('homecat');
	$('#catalog > li:eq('+ge+')').addClass('act');
/*show site*/
	$('body').animate({ opacity:1 },1000);
	setTimeout(function(){ $('#logo').animate({ top:0},500); },1000);
/*catalog*/
	$('#catalog > li > a').click(function(){
		$('#catalog > li').removeClass('act');
		$(this).parent('li').addClass('act');
		var index = $(this).parent().index();
		set_cookie('homecat',index);
		//return false;
	});
	$('.menu > li').eq(3).addClass('not_hover');
	$('.footer_menu a').eq(3).remove();
/*gallery*/
	//$('#gallery_cont a').lightBox();
	$('a[rel="colbox"]').colorbox();
/*carousel_header*/
	if($('.header').find('div').hasClass('header_gallery')){
		//$('#carousel_header a').lightBox();
		$('a[rel="box_head"]').colorbox();
		var li = $('#carousel_header li');
		var size_li = $('#carousel_header li').size();
		var width_ul = size_li*li.width()+2700;
		$('#carousel_header ul').css('width',width_ul+'px');
		
		$('.gallery_right, .gallery_left').click(function(){
			if($(this).hasClass('gallery_right')){
				var goto = '-=';
				var element = $('#carousel_header ul li.act').next();
				var f_l = ':first';
				if($('#carousel_header ul li:last').hasClass('act')){ return false; }
			}else if($(this).hasClass('gallery_left')){
				var goto = '+=';
				var element = $('#carousel_header ul li.act').prev();
				var f_l = ':last';
				if($('#carousel_header ul li:first').hasClass('act')){ return false; }
			}
			
			$('#carousel_header ul').animate({ left:goto+248+'px' },500);
			element
				.animate({ marginTop:0},500)
				.addClass('act')
				.find('img')
				.animate({ width:'322px'},500);
			$('#carousel_header ul li.act'+f_l)
				.animate({ marginTop:'43px'},500)
				.find('img')
				.animate({ width:'192px'},500)
				.parents('li.act')
				.removeClass('act');
				stop(true,true);
				return false;
		});
	}
/*carousel autocatalog*/
	var lom = 58*8;
	$('.btn_bottom, .btn_top').click(function(){
		var top = ($('#autocatalog').offset().top - $('.autocatList').offset().top)-(58*8);
		
		if($(this).hasClass('btn_top')){
			var pls_mns = '+='; 
			if(top>=0-(58*8)) { return false; }
		}else if($(this).hasClass('btn_bottom')){
			var pls_mns = '-='; 
			if((top-top)-top>=58*$('#autocatalog li').size()) { return false; }
		}
		$('#autocatalog').stop(true,true).animate({ top:pls_mns+lom+'px'},500);
		
		return false;
	});
});
function set_cookie(name,val){
	document.cookie=name+'='+val;
}
function delete_cookie(name,val) {
document.cookie =  name+"=" + ( ( '/' ) ? ";path=/" : "") + ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
window.location.reload(true);
}
function get_cookie(c_name) {
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=");
  if (c_start!=-1)
    {
    c_start=c_start + c_name.length+1;
    c_end=document.cookie.indexOf(";",c_start);
    if (c_end==-1) c_end=document.cookie.length;
    return unescape(document.cookie.substring(c_start,c_end));
    }
  }
return "";
}
