$(document).ready( function() {
	$("#"+ $("body").attr('id') +"_m a").parent().addClass('active');
	$("#showgrid").click(function() {
		$(".container").toggleClass("showgrid");
		$(this).html(($(this).html() == 'Show grid') ? 'Hide grid' : 'Show grid');
	});
	$(".table tr:even").addClass("zebra");
	$(".table tr").each(function() {
		$(this).children('td:first').addClass("first");
	});
	
	$("#mainmenu ul li").hover(
        function () { $(this).children('ul').show(); },
        function () { $(this).children('ul').hide(); }
    );
	$("#countryselect").hover(
        function () { $("#countryselect li:not(.active)").show(); $("#countryselect .active").css('background', '#F15F00');  $("#countryselect .active a").css('color', 'white'); },
        function () { $("#countryselect li:not(.active)").hide(); $("#countryselect .active").css('background', 'none'); $("#countryselect .active a").css('color', '#555');}
    );
    
    $(".revmachine").hover(function() {
    	$(this).children(".txt_bg").stop().animate({top: 160});
    	$(this).children(".txt").stop().animate({top: 160});
    }, function() {
		$(this).children(".txt_bg").stop().animate({top: 230});
		$(this).children(".txt").stop().animate({top: 230});
    });
	/*
$("#mainmenu li").has('ul').hover(
		function() {
			$(this).children('div').show();
		},
		function() {
			$(this).children('div').hide();
		}
	);
*/
});
