$(function(){
	$('.contentPadd h3').first().addClass('first_h3');
	$('.contentPadd.loginPage h3').addClass('first_h3');
	$('.contentInfoText, .contentInfoBlock').last().addClass('marg-bottom');
	$('.loginPage .contentInfoText').addClass('marg-top');
	
	$('.cart th').last().css('border-right','0px');
	$('.cart_prods').css('border-width','0px 1px 1px 0px');
	$('.cart_update').css('border-width','0px 1px 1px 0px');
	$('.cart_price').css('border-width','0px 0px 1px 0px');	
	$('.cart_total td:nth-child(2)').css('border-width','0px 1px 0px 0px');
	$('.desc p').first().css('padding-top','0px');
	
	$('ul').each(function (ul) {
	$(this).find('li').first().addClass('first');
	$(this).find('li').last().addClass('last');
	});	
	
	$('.prods_content').each(function (div) {
	$(this).find('ul.row').first().addClass('first');
	$(this).find('ul.row').last().addClass('last');	
	});
	
	$('.breadcrumb').each(function (breadcrumb) {
	$(this).find('a').last().addClass('last');	
	});
	$('.row_4').each(function (title_t) {
	$(this).find('.title-t').first().addClass('first');
	
	});	
});
$(function(){
	 var keeper=$('.prods_info_page .wrapper_pic_div'),
	  zoomPic=$('.wrapper_pic_zoom, ').css({opacity:0})
	 keeper
	  .bind('mouseenter',function(){
	   zoomPic
	  .stop()
	  .animate({opacity:1})
	
	  })
	  .bind('mouseleave',function(){
	  zoomPic
	   .stop()
	   .animate({opacity:0})
	  }) 
})
$(document).ready(function(){
	$('#piGal').css('visibility','visible');
	var keeper=$('.row_4'),
		zoomPic=$('.breadcrumb').css({opacity:0})
	keeper 
	  setTimeout(function(){
	  zoomPic
		.stop()
		.animate({opacity:1, marginTop:'0'})
		
	 }, 2000)

})

