$(function(){
	// place hint in global search box
	$('#mainSearchInput').hint();

	//init tabs
	$('.tabSet').tabs();
	
	//hover Items
	$('.moItems img').hover(
	    //mouseOver
	    function(){
	        var orgSource = $(this).attr('src');
	        var newSource = orgSource.substr(0,(orgSource.length - 4)) + '_ro.gif';
	        $(this).attr('src',newSource);
	        
	    },
	    //mouseOut
	    function(){
	        var orgSource = $(this).attr('src');
	        var newSource = orgSource.substr(0,(orgSource.length - 7)) + '.gif';
	        $(this).attr('src',newSource);
	    }
	);
	    
})


