
$().ready(function() {
	// Navigation for use with JQuery
	var path = location.pathname;
	if (path != '/gallery/') path += location.search;
	
	$('#nav_products a[href="'+path+'"]').addClass('current');
	
	var isProd = /\/products\/*/i;
	if( isProd.test(path)) {
		path ='/products.php?category=0';
	}
	
	var isShop = /\/shop\/*/i;
	if( isShop.test(path)) {
		path ='/shop/';
	}
	
	var isBlog = /\/blog\/*/i;
	if( isBlog.test(path)) {
		path ='/blog/';
	}
	
	var isVT = /\/gallery\/gallery_vt*/i;
	if( isVT.test(path)) {
		path ='/gallery/';
	}
	
	$('#nav a[href="'+path+'"]').addClass('current');	
	$('.category-subs-selected').parent().addClass('current');
	
	// Use jScrollPane to create uniform left scrollbars
	$('.pad').jScrollPane({
		scrollbarOnLeft:true,
		showArrows:true,
		scrollbarWidth:18	
	});
	
	$("#box_image").after('<div id="sample"><img src="/shop/images/cufflinx/gg-500.jpg" /></div><div id="sample_bkg">&nbsp;</div>');
	$('.hover_img').hover( function() {
										
			$('#sample_bkg').stop();			
			$('#sample').fadeIn(400);		
			$('#sample_bkg').show().fadeTo(0,0.01);
			$('#sample_bkg').css({'width':'339px','height':'339px'}).fadeTo(400,0.33);							 
			$('#sample img').attr('src',$(this).attr('src'));						
		},
		function() {
			$('#sample').hide();	
			$('#sample_bkg').hide();						
		}	
	);
});