$(document).ready(function(){ 
  // jQuery stuff here

	$('#top h1').pngFix();

	$('#top div, #sidebar .box, .product').click(function() {
		window.location = $('h3 a', this).attr('href');
	});

	$('#top div, #sidebar .box, .product').hover(function() {
		$(this).addClass("pointer");
	}, function() {
		$(this).removeClass("pointer");
	});


	// ie doesn't like this, so don't give it to them!
	if (jQuery.support.opacity) {
		$('.hover').hover(function() {
			$(this).fadeTo(200, .8);
			$(this).addClass("pointer");
		}, function() {
			$(this).fadeTo(200, 1);
			$(this).removeClass("pointer");
		});
	}

});

