   $(document).ready(function(){

			$(".payment").hover(function(){
			$(this).addClass("hover");
		 }, function(){
			$(this).removeClass("hover");
		 });
		 
	
			
		
	
			
	});

function plnSel(value){
		$('.payment input').filter(function(){
			return 	$(this).val()==value;	
		}).attr('checked','checked');
		return false;
}


$(function(){
	$('.productInfoHover').hide();
	$('.productImage a').hover(function(){
		$(this).children('.productInfoHover').show();
	
	},function(){
		$(this).children('.productInfoHover').hide();
	
	});
});
