/*	When document is full loaded (ready) init
 *  dom element's behaviours and animations 
 */

$(document).ready(function(){	
	
	
	$('img#testy').hover(function() {
		$('a#sprzedaz').fadeIn();
	}, function() {
		
	});
	
	
	$('#menu a img').not('#testy').hover(function() {
		$('a#sprzedaz').fadeOut();
	}, function() {
	
	})
	
	// end ready function
});

