// JavaScript Document

$(document).ready(function(){

	if(navigator.appName == 'Microsoft Internet Explorer' && getIEVersionNumber() < 7 ){
	
	}else{

	$('.productCart').hide();
	
	$('.product').hover(function () {
							$(this).find('.productCart').fadeIn('slow');
						},
						
						function () {
							$(this).find('.productCart').fadeOut('slow');
						}
				);

	}
	
	}); 

function getIEVersionNumber()
{
	var ua = navigator.userAgent;
	var MSIEOffset = ua.indexOf("MSIE ");
	
	if (MSIEOffset == -1) {
	return 0;
	} else {
	return parseFloat(ua.substring(MSIEOffset + 5, ua.indexOf(";", MSIEOffset)));
	}
}
