$(document).ready(function() {

     $("#slider").easySlider({
	     controlsShow: false,
	     auto: true,
	     continuous: true,
	     pause: 5000
     });
    
	$('.sf-menu > li > a:first-child').each(function() {

		var link = $(this).attr('href').replace('http://', '').split('/');
		$(this).attr('id', link[1]);

	});
	
	// remove the collections sub menu
	$('#collections').next('ul').remove();

	// ugh
	$('li.Odd, li.Even').each(function() {
		$(this).removeAttr('style');
	});
	
	// remove row dividers. 
	$('.SubCategoryListGrid .RowDivider').remove();
})

function share_on_facebook(product_name) {
	
	var t = encodeURIComponent(product_name);
	var u = encodeURIComponent(window.location);
	window.open('http://www.facebook.com/sharer.php?u=' + u + '&t=' + t);
	
}

function share_on_twitter() {
	window.open('http://twitter.com/share?url=' + encodeURIComponent(window.location));
}

