var Vinter =  {

	loaded: function() {
		
		// Div hover
		$(".categoryListBoxContents, .productListing-even, .productListing-odd").hover(
		function(e) {
			$(this).addClass("box-hover");
		}, 
		function(e) {
			$(this).removeClass("box-hover");
		});

		// Show/hide the login-box
		$("#login-header").toggle(
			function() {
				$(this).addClass("active");
				$("#login-form-popup").fadeIn("fast");
			},
			function() {
				$("#login-form-popup").fadeOut("fast");
			});
		
		// VAT Form
		$("#vat_select").bind("change", function(e) {
			$("#vat_form").submit();
		});
		
		// Check if page is category page
		if ($(".categoryImg img")) 
		{
			var img = $(".categoryImg img");
			
			if (img.length > 0)
			{
				// Check if category image is flash
				if (img[0].src.indexOf("swf") > 0)
				{	
					// If flash, output with SWFObject
					var so = new SWFObject(img[0].src, "reklamfilm", "497", "180", "8", "#FFFFFF");
					so.write("categoryImgListing");	
				}
			}
		}
	}
	
}

$(document).ready(Vinter.loaded);
