jQuery(document).ready(function(){
		jQuery('.item').ArteHover(400);		
		jQuery('.h_item').ArteHover(400);	
		
		if (document.body.clientWidth <= 1200) {
			$('.logo').css('left','60px');
			$('.cat_wrapper').css('margin-left','75px');
			$('.leftmenu').css('margin-left','75px');
			$('#fixed').css('display','none');
			$('.hidden_fixed').css('display','block');
			
			}
		if (document.body.clientWidth >= 1200) {
			$('.logo').css('left','160px');
			$('.cat_wrapper').css('margin-left','175px');
			$('.leftmenu').css('margin-left','175px');
			$('#fixed').css('display','block');
			$('.hidden_fixed').css('display','none');
			}			
		
	});



$(window).resize(function() {
		$(".fly").css('left', $('div.content').offset().left+10);
		if (document.body.clientWidth <= 1200)
			{
				$('#fixed').css('display','none');
				$('.logo').css('left','60px');
				$('.cat_wrapper').css('margin-left','75px');
				$('.leftmenu').css('margin-left','75px');
				$('.hidden_fixed').css('display','block');
			}
		if (document.body.clientWidth > 1200)
			{				
				$('#fixed').css('display','block');
				$('.logo').css('left','160px');
				$('.cat_wrapper').css('margin-left','175px');
				$('.leftmenu').css('margin-left','175px');
				$('.hidden_fixed').css('display','none');
			}
});

$(function() {
		$(".fly").css('left', $('div.content').offset().left+10);
		var offset = $("#fixed").offset();
		var topPadding = 250;
		$(window).scroll(function() {
			if ($(window).scrollTop() > offset.top) {
				$("#fixed").stop().animate({marginTop: $(window).scrollTop() - offset.top + topPadding});
			}
			else {$("#fixed").stop().animate({marginTop: 0});};});
	});


