$(document).ready(function(){
    $.ifixpng('/images/pixel.gif');
    $('.top_menu li a, .logo_bg, .cart_top img, .right_corner,#footer,.top_picture, .over_page, .footer_picture, .main_text, .picture4, .welcome_text,.pc2,.pc1').ifixpng();
    
    
    
    
    $(".cart_top img").hover(function(){
        $(this).attr('src', '/images/your_cart_ro.png')
		 $(this).ifixpng();
    }, function(){
        $(this).attr('src', '/images/your_cart.png')
		 $(this).ifixpng();
    })
	 $(".add_to_cart img").hover(function(){
        $(this).attr('src', '/images/add_to_cart_ro.png')
		 $(this).ifixpng();
    }, function(){
        $(this).attr('src', '/images/add_to_cart.png')
		 $(this).ifixpng();
    })
	$(".checkout").hover(function(){
        $(this).attr('src', '/images/checkout_ro.png')
		 $(this).ifixpng();
    }, function(){
        $(this).attr('src', '/images/checkout.png')
		 $(this).ifixpng();
    })
    
    $(".top_menu li a").hover(function(){
		if (!$(this).hasClass('selected')){
	        $(this).css('background', 'transparent url(/images/top_menu_bg_ro.png) no-repeat scroll 0 0')
	        $(this).ifixpng();
		}
    }, function(){
		if (!$(this).hasClass('selected')){
			$(this).css('background', 'transparent url(/images/top_menu_bg.png) no-repeat scroll 0 0')
			$(this).ifixpng();
		}
    })
    
})

