$(document).ready(function() {
	
	
	var counter = $(".GS").find("img").length;
	$(".GS").css({"width":(counter*89)});
	
	var dp = $(".GALLERY_M").offset();
	var rp = $(".GALLERY_M").find(".GS").offset();

	$(".SCROLLR").click(function() {
		
		ip = $(".GALLERY_M").find(".GS").offset();
		if (rp.left < ip.left) {
			
			$(this).siblings(".GALLERY_M").find(".GS").animate({ right: "+=100px" }, 500 );
			
		}
	});
	
	$(".SCROLLL").click(function() {
		
		ip = $(".GALLERY_M").find(".GS").offset();
		
		if ((rp.left + 357) > ip.left) {
			$(this).siblings(".GALLERY_M").find(".GS").animate({ right: "-=100px" }, 500 );
		}
	});
	

	
	$(".GSIMG").hover(function(){
		$(this).find(".shadow").fadeOut('300', function(){ $(this).hide(); });
	},function(){
		$(this).find(".shadow").fadeIn('300', function(){ $(this).show(); });
	});
	
	$(".GALLERY_M2 .GSIMG img").click(function(){
		var image = $(this).attr("src");
		$(".GBIG").find("img").attr("src",image);
	});	
	
	// MENU 
	
	$(".MENU ul li").hover(function() {
		$(this).find("ul").css({"display":"block"});								
	},function() { 
		$(this).find("ul").css({"display":"none"});		
	});
	
	$(".MENU ul li ul li").hover(function() {
		$(this).css({"background-color":"#ef1616","color":"#FFF"});
	},function() { 
		$(this).css({"background-color":"#282525"});		
	});
	
	$(".IC").click(function(){
		$(this).parent().next(".IMAINBOX2:first").toggle("normal");					
	});
	
	$(".newsletter_btn").colorbox({width:"45%", inline:true, href:"#newsletter"});
	

	
});
