$(function(){
	$("#goToBrand").click(function(){ 
		// if the value of our selected option is not 'sb' (for superbrand)
		if($("select#selectBrand").val()!='sb'){
			// the link is the value of the selected option
			var lnk = $("select#selectBrand").val();
			// redirect to link
			document.location = lnk;
		}
		// cancel any other behavior (href) and just run this function when the go button is clicked
		return false;
	});
});
