function check_empty() { if($('#query').val() == 'Site Search' || $('#query').val() == 'Product Search' || $('#query').val() == '') { alert_box('Please enter a valid keyword for the Search.'); return false; } } $(document).ready(function(){ $('input[name="pro_ste_search"]').change(function(){ var search_type = $(this).attr('id'); if(search_type == 'prdct_search') { if($('#query').val() == 'Product Search' || $('#query').val() == 'Site Search') { $('#query').val('Product Search'); } $('#search_type_name').val('Product Search'); $('#searchform').attr('action',product_search_url); } else if(search_type == 'ste_search') { if($('#query').val() == 'Product Search' || $('#query').val() == 'Site Search') { $('#query').val('Site Search'); } $('#search_type_name').val('Site Search'); $('#searchform').attr('action',search_url); } }); }); $(function() { $('.scroll-pane:first').jScrollPane(); $('.scroll-pane-arrows:first').jScrollPane( { showArrows: true, horizontalGutter: 10 } ); // $('.scroll-pane-arrows').css('display','none'); // $('.scroll-pane-arrows:first').css('display','block'); // $('.prod_table_gal').css('display','none'); // $('.prod_table_gal:first').css('display','block'); }); $(document).ready(function() { $(".tablesorter").tablesorter(); } );