/*	When document is full loaded (ready)
 *  init dom element's behaviours and animations 
 */
 
  
$(document).ready(function(){

/* menu slide effect */

	$('a.withSubmenu').toggle(function(){
		$(this).addClass('showSubMenu');
		
		$(this).next('ul.leftSubMenu').slideDown();//fadeIn('slow');//css('display','block');
	}, function(){
		$(this).removeClass('hideSubMenu');
		$(this).removeClass('showSubMenu hideSubMenu');
		$(this).next('ul.leftSubMenu').slideUp();//css('display','none');
	});

/* area hover effect */

$('map#poland area').hover(function(){
	statename=$(this).attr('alt');
	$('.yourState span').html(statename);
},function(){
	$('.yourState span').html('wybierz województwo na mapie');
}) 	
	
	   
}); //end ready function
	


