jQuery(function() {
	
	jQuery(".tabOff").hover(function() {
		var src = jQuery(this).attr('src');
		jQuery(this).attr('src', src.substr(0,src.indexOf("Off.jpg")) + 'On.jpg');
	}, function() {
		var src = jQuery(this).attr('src');
		jQuery(this).attr('src', src.substr(0,src.indexOf("On.jpg")) + 'Off.jpg');	
	});
	
	jQuery(".buttonOff").hover(function() {
		var src = jQuery(this).attr('src');
		jQuery(this).attr('src', src.substr(0,src.indexOf("Off.png")) + 'On.png');
	}, function() {
		var src = jQuery(this).attr('src');
		jQuery(this).attr('src', src.substr(0,src.indexOf("On.png")) + 'Off.png');
	}); 


	
	jQuery("div.siteContainer > div.siteContainerCenter > div.right > div.addBox > div.add").hover(function(){
		jQuery(this).css("opacity","0.6");
		jQuery(this).css("filter","alpha(opacity=60");
	}, function(){
		jQuery(this).css("opacity","1");
		jQuery(this).css("filter","alpha(opacity=100");
	});
	
	
});







