$(document).ready(function(){

	$("#homeBrands1").hover(
		function(){ $(this).addClass("homeBrands1On"); },
		function(){ $(this).removeClass("homeBrands1On"); }
	);	
	$("#homeBrands2").hover(
		function(){ $(this).addClass("homeBrands2On"); },
		function(){ $(this).removeClass("homeBrands2On"); }
	);
	$("#homeBrands3").hover(
		function(){ $(this).addClass("homeBrands3On"); },
		function(){ $(this).removeClass("homeBrands3On"); }
	);
	
	$("#intBrands1").hover(
		function(){ $(this).addClass("intBrands1On"); },
		function(){ $(this).removeClass("intBrands1On"); }
	);	
		$("#homeBrands1, #intBrands1").click(
		function(){ window.location.href="products.php?brand=bilstein" }
		);
	$("#intBrands2").hover(
		function(){ $(this).addClass("intBrands2On"); },
		function(){ $(this).removeClass("intBrands2On"); }
	);
		$("#homeBrands2, #intBrands2").click(
		function(){ window.location.href="products.php?brand=spax" }
		);
		
	$("#intBrands3").hover(
		function(){ $(this).addClass("intBrands3On"); },
		function(){ $(this).removeClass("intBrands3On"); }
	);
		$("#homeBrands3, #intBrands3").click(
		function(){ window.location.href="products.php?brand=supersport" }
		);
	
	$("#interestfree").click(
		function(){ window.location.href="faq.php" }
		);
	

	
	$("#email").hover(
		function(){ $(this).addClass("emailOn"); },
		function(){ $(this).removeClass("emailOn"); }
	);
	$("#email").click(function() {
		var email = "sales@silverstonetuning.com";
        var mailto_link = 'mailto:'+email;
        window.location.href =mailto_link;
	});


	$("#flag1").click(function() {
        window.location.href = "index.php?lang=en";
	});
	$("#flag2").click(function() {
        window.location.href = "index.php?lang=es";
	});
	$("#flag3").click(function() {
        window.location.href = "index.php?lang=gr";
	});
	$("#flag4").click(function() {
        window.location.href = "index.php?lang=fr";
	});
	
	
	
	
	

});
