$(document).ready(function() {

    // Suckerfish initialisation
    // http://users.tpg.com.au/j_birch/plugins/superfish/
    $("#sfnav").superfish({autoArrows:false,disableHI:true});

    // Initialize brandselector
    if ($('#brandselector').length) {
    	$('#bt_brandselector').remove();
    	$('#brand').change(function()
    	{
    		if ($(this).val() == 'null') return false;
    		// document.location.href = $(this).val();
    		window.open($(this).val(), 'Brandwindow');
    	});
    }
    
});
