$(document).ready(function(){
    var $url = $('a#url').text();
 //=====menu - rozwijanie=============================================================
    $('#menu ul li.tab').mouseover(
	function(){
	    org_src = $(this).children().children('img').attr('class');
	    if(org_src)
	    {
		$('div.sub').hide();
		$('li.tab a img').each(
		    function(){

		
			$(this).attr('src',$url+"images/"+$(this).attr('class')+".jpg");
		
		    });
		$(this).children('div').show();
	 

		src = $url + "images/hover_"+org_src+'.jpg';
		$(this).children().children('img').attr('src',src);
	 
	    }
	});
    $('div.sub').mouseover(
	function(){
	    $('li#check').attr('class','over');
	});
 //=====menu - zwijanie=============================================================
    function selected()
    {
	$('#tab_selected').attr('src',$url + 'images/hover_' + $('#tab_selected').attr('class') + '.jpg');
    }
    
    $('div.sub').mouseout(
	function(){
	    $('div.sub').hide();
	    $('li.tab a img').each(
		function(){

		    $(this).attr('src',$url+"images/"+$(this).attr('class')+".jpg");

		});
	    // src = $url +  "images/"+org_src+'.jpg';
	    //  $(this).children().children('img').attr('src',src);
	    $('li#check').attr('class','');
	    selected();
	});

    $('#menu ul li.tab').mouseout(
	function(){
	    if( $('li#check').attr('class') != 'over')
	    {
		$(this).find('img').attr('src',$url+"images/"+$(this).find('img').attr('class')+".jpg");
		$('div.sub').hide();
	    }
	  selected();
	});
 //=====pretty Photo - inicjalizacja=============================================================

	$("a[rel^='prettyPhoto']").prettyPhoto(
	{
	    animationSpeed: 'fast', /* fast/slow/normal */
	    padding: 40, /* padding for each side of the picture */
	    opacity: 0.5, /* Value betwee 0 and 1 */
	    showTitle: true, /* true/false */
	    allowresize: true, /* true/false */
	    counter_separator_label: ' z ', /* The separator for the gallery counter 1 "of" 2 */
	    theme: 'light_rounded' /* light_rounded /  / light_square / dark_square */
	 

	});
 //=====domek=============================================================
    $('a.room').hover(
    function(){
	$(this).children('img').attr('src',$url + "images/" + $(this).attr('id') +'.1.gif');
    },
    function(){
	$(this).children('img').attr('src',$url + "images/" + $(this).attr('id') +'.gif');
    });

});



