$(document).ready(function() {
		
		
	/* Brand List & Site Link Rollover */
	$("#dgLeftMenu > ul > li > a").mouseover(function() {
		var title = $(this).attr("title");
		$("#dgLeftMenu > h5").html(title);
	});
	$("#dgLeftMenu > ul > li > a").mouseout(function() {
		$("#dgLeftMenu > h5").html("&nbsp;");
	});

	$(".Brands > li > a").mouseover(function() {
		var title = $(this).attr("title");
		$("#dgRightMenu > h5").html(title);
	});
	$(".Brands > li > a").mouseout(function() {
		$("#dgRightMenu > h5").html("&nbsp;");
	});
	
	
	/* Expand & Contract Function for the Product List Page */
	$("a.contract").click(function(){
		$(this).addClass("swap");
		$("ul.listing").fadeOut("fast", function() {
			$(this).fadeIn("fast").addClass("grid");
		});
		$("div.check").fadeOut("fast", function() {});
	});
	
	$("a.expand").click(function () {
		$(this).removeClass("swap");
		$("ul.listing").fadeOut("fast", function() {
			$(this).fadeIn("fast").removeClass("grid");
			$("div.check").fadeIn("fast", function() {});
		});
		
	}); 


	/* Roll-over function for Multiple Product Views */
	$(function() {
	$('#thumbnails img').toggle(function() {
		var currentImg = $(this).attr('src');
		$("#mainImage").attr('src', currentImg);
	}, function() {
		var currentImg = $("#mainImage").attr('alt');
	   $("#mainImage").attr('src', currentImg);
	});
	});
	
	$(function() {
	$('#thumbnails img').hover(function() {
		var currentImg = $(this).attr('src');
		$("#mainImage").attr('src', currentImg);
	}, function() {
		var currentImg = $("#mainImage").attr('alt');
	   $("#mainImage").attr('src', currentImg);
	});
	});


});

/* Facebook */
function fbs_click() {
    u=location.href;
    t=document.title;
    window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
    return false;
}
