$(document).ready(function(){
    // hover function for inputs and images
        $('.hover').hover(function(){
    		$(this).attr('src', $(this).attr('src').replace(/\.(\w{3})/g, "Hover.$1"));
    	},function() {
    		$(this).attr('src', $(this).attr('src').replace(/Hover\.(\w{3})/g, ".$1"));
    	});
    	
    	if($('.jsThumbs').length > 0) {
    	    $('.jsThumbs ul').addClass('jsOn');
    	    
        	$('.jsThumbs ul li').click(function() {
        	    $('#detailed span').html('');
                
                newSrc = $(this).attr('bigImg');
                newImg = $('<img>').attr('src', newSrc);
                $('#detailed span').html(newImg);
        	});
    	}


});