$(document).ready(function() {
	/* hovers */
	$("#main-menu-elements li.passive").hover(
      	function () {
		    $(this).addClass("active");
			$(this).css({'cursor' : 'pointer'});
		  },
		function () {
		    $(this).removeClass("active");
			$(this).css({'cursor' : 'pointer'});
		}
    );

	$(".banklink").click(function () {
			var bankId = $(this).attr('id');
			$("#selected-bank").val(bankId);
			$("#cart-submit-form").submit();
    });
});
