  $(document).ready(function(){ 
						
$("#nav>ul>li>a").click(function()
{
$(this).fadeOut("900");
	});

$(".current_page_item").prependTo("#nav ul");

$(".current_page_parent").prependTo("#nav ul");

$(".current_page_item").css({'opacity': '0'});

$(".current_page_item").animate({'opacity': '1'});


$('#mens_product .thumb a').ajaxify({
         target: '#mens_item',
         loading_img:'http://www.sweetnothingclothes.com/blog/wp-content/themes/SweetNothing/images/ajax-loader.gif',
         tagToload: '.post'
});

$('#womens_product .thumb a').ajaxify({
         target: '#womens_item',
         loading_img:'http://www.sweetnothingclothes.com/blog/wp-content/themes/SweetNothing/images/ajax-loader.gif',
         tagToload: '.post'
});

$('#other_product .thumb a').ajaxify({
         target: '#other_item',
         loading_img:'http://www.sweetnothingclothes.com/blog/wp-content/themes/SweetNothing/images/ajax-loader.gif',
         tagToload: '.post'
});

$('#wrapper').localScroll({
   target:'#wrapper'
});


}); 

