/*
 *  Agencja Interaktywna 8balldesign - http://8balldesign.pl
 */
	$(document).ready(function() { 
	
  /*
   * Slide Panel
   */
	
		$(".topMenuAction").click( function() {
			if ($("#openCloseIdentifier").is(":hidden")) {
				$("#slider").animate({ 
					marginTop: "-250px"
					}, 500 );
				$("#topMenuImage").html('<img src="img/menu.png" alt="Menu" />');
				$("#openCloseIdentifier").show();
			} else {
				$("#slider").animate({ 
					marginTop: "0px"
					}, 500 );
				$("#topMenuImage").html('<img src="img/zamknij.png" alt="Zamknij" />');
				$("#openCloseIdentifier").hide();
			}
		});
		
		/*
		 *  Tolltips
		 */ 
		
		  $("a[title]").tooltip(
	{
		tip: '#tip',
		effect: 'slide',
		
	}
	
	);  
});
	
	/*
	 * Fullscreen background
	 */
	
$(function() {

	// initialize SuperBGImage
	$('#thumbs').superbgimage().hide();

	//$('#content').fadeTo('slow', 0.75);
	$('#content').jScrollPane({showArrows:true});
	
});

