// JavaScript Document
$(function(){
						   
$('.MatrixBlock li').hover(function(){
$(this).children('.PopupBlock').stop().show();
},function(){
$(this).children('.PopupBlock').stop().hide();
});

$('a.whatcvv').hover(function(){
	$('span.CVVInfo').show();
	}, function(){
	$('span.CVVInfo').hide();
});

// top nav controll
 $('#top_nav div:eq(1) a').css({"padding-top" : "1px", "height" : "43px"});

});		

