/* events */
$(document).ready(function() {
	$('.menuItem a img').mouseover(function(){
		if($(this).attr('class') != "flag"){
			var imgName = $(this).attr('src').replace("_off", "_on");
			$(this).attr('src', imgName);
		}
	});
	$('.menuItem a img').mouseout(function(){
		if($(this).attr('class') != "flag"){
			var imgName = $(this).attr('src').replace("_on", "_off");
			$(this).attr('src', imgName);
		}
	});

	$('#submenu li a').mouseover(function(){
		$(this).parent().addClass('subon');
	});
	$('#submenu li a').mouseout(function(){
		$(this).parent().toggleClass('subon');
	});

	$('.box').click(function(){
	        window.location = $('.fullpage', this).get(0).href;
	});
});