jQuery.noConflict();

//jQuery(window).load(function() {
//	var zmienna = jQuery('#content h3').html();
	//alert(zmienna);
//	if(zmienna == "Strona główna")
//		jQuery.prompt('<img src="templates/img/kartka-swiateczna.jpg" alt="" />',{ overlayspeed: 2 });
//});

jQuery(document).ready(function() {
	
    jQuery('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});


	// wylaczenie a z menu praca
	jQuery('#menu2 .l4>a').attr('href','');
	
	
	
	// glowne menu  
	jQuery('#menu3 ul .sub1').hide();
	jQuery('#menu3 ul .sub1:has(.selected)').show();

	jQuery('#menu3>ul>li>a').toggle(


		function() {
			jQuery(this).next('ul').slideDown();
		},
		function() {
			jQuery(this).next('ul').slideUp();
		}
	);

	
	//jezeli jest to lista rozwijana to zaznacz innym kolorem
	

	jQuery('#news #imagesList2').fadeTo("slow","1");

	// zmiana przycisku magazynu po najechaniu kursorem
	jQuery('#btn_mag>img').hover(
		function() {
			jQuery('#btn_mag>img').attr('src','templates/img/swi2_on.gif');
		},
		function() {
			jQuery('#btn_mag>img').attr('src','templates/img/swi2_off.gif');
		}
	);

	// zmiana przycisku sklepu po najechaniu kursorem
	jQuery('#btn_shop>img').hover(
		function() {
			jQuery('#btn_shop>img').attr('src','templates/img/btn_sklep_h2.gif');
		},
		function() {
			jQuery('#btn_shop>img').attr('src','templates/img/btn_sklep2.gif');
		}
		
	);


	//obsluga formularza
	jQuery('#contactPanel #clear').click(function() {
		jQuery('#contactPanel :input').val('');
	})


	
	jQuery('.log_content li a').each(function() {
		if(jQuery(this).attr("title")=="") {
			jQuery(this).attr("href","");
		}
		else {
			jQuery(this).attr("href",jQuery(this).attr("title"));
			jQuery(this).attr("rel","");
		}
		
		
	});

	

});
