$(document).ready(function(){
	
	// Flags - let's automate this
	$(".header .flags .item").each(function(){
		var item = $(this);
		var linkToCountry = $(this).find("a");
		var flag = $(this).find("b");
		linkToCountry.hover(
			function(){
				if(item.hasClass("english")){
					flag.animate({width:"28px",height:"508px",marginLeft:"-15px",top:"2px"},200);
				} else if(item.hasClass("espanol")){
					flag.animate({width:"28px",height:"508px",marginLeft:"-15px",top:"-59px"},200);
				} else if(item.hasClass("chinese")){
					flag.animate({width:"28px",height:"508px",marginLeft:"-15px",top:"-120px"},200);
				} else if(item.hasClass("russian")){
					flag.animate({width:"28px",height:"508px",marginLeft:"-15px",top:"-180px"},200);
				} else if(item.hasClass("german")){
					flag.animate({width:"28px",height:"508px",marginLeft:"-15px",top:"-362px"},200);
				}
			},
			function(){
				if(item.hasClass("english")){
					flag.animate({width:"35px",height:"635px",marginLeft:"-18px",top:"0px"},200);
				} else if(item.hasClass("espanol")){
					flag.animate({width:"35px",height:"635px",marginLeft:"-18px",top:"-76px"},200);
				} else if(item.hasClass("chinese")){
					flag.animate({width:"35px",height:"635px",marginLeft:"-18px",top:"-152px"},200);
				} else if(item.hasClass("russian")){
					flag.animate({width:"35px",height:"635px",marginLeft:"-18px",top:"-228px"},200);
				} else if(item.hasClass("german")){
					flag.animate({width:"35px",height:"635px",marginLeft:"-18px",top:"-455px"},200);
				}
			}
		);
	});
	
});

