$(document).ready(function(){
	
    $('.changemo').swapit('_over');
    
    $('div.model-description').hide();
    
    $('#product-table table tr.pump-hover').mouseenter(function() {
    	$(this).find("div.model-description").show();
    }).mouseleave(function() {
    	$(this).find("div.model-description").hide();
    });
    
    $('#product-table table tr.pump-hover').click(function() {
        var href = $(this).find("a.model-download").attr("href");
        if (href) {
        	if (href == '#') {
        		alert('Contact HiBlow USA for design information info@hiblow-usa.com');
        		return false;
        	} else {
            	window.open(href);
            return false;
            }
        }
    });

	if ($('#product-table').length) {
		/*$('div.model-description').hide();
		 */
	}
	
	
/*	fun to play with...probably too annoying in practice though. keep just in case!
	$("#flow-select").change(function() {

	 $("td.flow").animate({ backgroundColor: "#ffffff" }, 200);
	 $("td.flow").animate({ backgroundColor: "#e4eaf0" }, 200);
	});
*/





});
