// Manages top search bar (box) behaviour
// Needs to direct search to Wordpress or to Magento standard  search based on radio button selection


jQuery(document).ready(function(){

	jQuery('#searchform').submit(function() {
			
		if (document.getElementsByName("header_searchbox_type")[0].checked == true) {
			window.location = "http://www.teraflex.biz/products/catalogsearch/result/?q=" + jQuery("#q").attr("value");
			return false; 
		}
		
		if (document.getElementsByName("header_searchbox_type")[1].checked == true) {
			window.location = "http://www.teraflex.biz/?s=" + jQuery("#q").attr("value");
			return false; 
		}
		
	});

});










