/**
 * @author Wasyl
 */
$(document).ready
(
	function()
	{
		$("ul.sf-menu").superfish({
	        delay:     0,               // 1.2 second delay on mouseout
	        speed: 'fast'
		});
		
		$(document).ready(function(){
			$("a[rel^='prettyPhoto']").prettyPhoto();
		});
		
		$('#main_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button01-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button01-01.jpg');
				}
		);
		
		$('#moje_konto_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button02-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button02-01.jpg');
				}
		);
		
		$('#koszyk_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button03-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button03-01.jpg');
				}
		);
		
		$('#czas_realizacji_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button04-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button04-01.jpg');
				}
		);
		
		$('#platnosci_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button05-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button05-01.jpg');
				}
		);
		
		$('#o_firmie_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button06-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button06-01.jpg');
				}
		);
		
		$('#regulamin_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button07-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button07-01.jpg');
				}
		);
		
		$('#kontakt_button').hover(
				function(){
					$(this).attr('src','/media/images/_site/button08-02.jpg');
				},
				function(){
					$(this).attr('src','/media/images/_site/button08-01.jpg');
				}
		);
	}
);

