$(function(){
$('img.chmurka').mousemove(function(e){
var alt = $(this).attr('alt');
$('#chmurka .s').text(alt);
$('#chmurka').show();
$('#chmurka').css({'top': e.pageY+2, left: e.pageX+15});
});
$('img.chmurka').mouseout(function(){
$('#chmurka').hide();
});
$('a.chmurka').mousemove(function(e){
var alt = $(this).attr('rel');
$('#chmurka .s').text(alt);
$('#chmurka').show();
$('#chmurka').css({'top': e.pageY+8, left: e.pageX+15});
});
$('a.chmurka').mouseout(function(){
$('#chmurka').hide();
});
$('img.menuRozwin_img').click(function(e){
	var obraz1='http://www.gamerar.pl/themes/GAMERAR/images/menu-rozwin.png';
	var obraz2='http://www.gamerar.pl/themes/GAMERAR/images/menu-zwin.png';
	var obraza=$('img.menuRozwin_img').attr('src');
	if (obraza=='http://www.gamerar.pl/themes/GAMERAR/images/menu-rozwin.png') {
		$(this).attr('src',obraz2);
		$('#menuRozwin ul').slideDown('slow');
	} else {
		$(this).attr('src',obraz1);
		$('#menuRozwin ul').slideUp('slow');
	}
});
$("select[name='art_kategoria']").change(function(){
	$("select option:selected").each(function () {
		if (this.value!='') window.location.replace(this.value);
	});
});
$('img.top-dzialy').mouseover(function(e){
    var img=$(this).attr('src');
    
    if (img=='http://www.gamerar.pl/themes/GAMERAR/images/top-go.png') 
        $(this).attr('src','http://www.gamerar.pl/themes/GAMERAR/images/top-go2.png');
    else if (img=='http://www.gamerar.pl/themes/GAMERAR/images/top-poj.png') 
        $(this).attr('src','http://www.gamerar.pl/themes/GAMERAR/images/top-poj2.png');
	else
		$(this).attr('src','http://www.gamerar.pl/themes/GAMERAR/images/top-tv2.png');
});
$('img.top-dzialy').mouseout(function(e){
    var img=$(this).attr('src');
    if (img=='http://www.gamerar.pl/themes/GAMERAR/images/top-go2.png') 
        $(this).attr('src','http://www.gamerar.pl/themes/GAMERAR/images/top-go.png');
    else if (img=='http://www.gamerar.pl/themes/GAMERAR/images/top-poj2.png') 
        $(this).attr('src','http://www.gamerar.pl/themes/GAMERAR/images/top-poj.png');
	else
		$(this).attr('src','http://www.gamerar.pl/themes/GAMERAR/images/top-tv.png');
});
});