
var RHomeGallery = QWebControl.extend('RHomeGallery', {
	
	load : function ()
	{
		this.jQuery(".gallery a").hover(
			function ()
			{
				// in 
				var img = jQuery("img", this).attr("src");
				img = img.replace("_s.png", ".png");
				jQuery("img", this).attr("src", img.replace(".png", "_s.png"));
			}, 
			function ()
			{
				// out
				if (!jQuery(this).hasClass("selected"))
				{
					var img = jQuery("img", this).attr("src");
					img = img.replace("_s.png", ".png");
					jQuery("img", this).attr("src", img.replace("_s.png", ".png"));
				}
			});
	}
	
});


