/* Author: 
   Pavel Kuts
*/
$(document).ready(function() {
  
	$('.share-notice').css({opacity: 0, visibility: "visible"})
	$('.share_item').focus( function(){
		dd = '#' + $(this).attr('id')+'_notice';
		$(dd).css('visibility','visible').animate({opacity: 100},3000);
	});
	$('.share_item').blur( function(){
		dd = '#' + $(this).attr('id')+'_notice';
		$(dd).stop().css({opacity: 0, visibility: "hidden"});
	});
	$('.open-goto-product').click(function(){
		$(this).next('.go-to-product').show();
		return false;
	});
});


