$(function() {
			    $('a[rel*=external]').click( function() {
			        window.open(this.href);
			        return false;
			    });
			});

function getClubs(clubtype) {
	$("#clubname-wrap select[name='clubid']").html('<option>Lijst wordt opgehaald...</option>');
    $.get("/../ajax/backend/clublist.php?type=" + clubtype, function(data){
	    $("#clubname-wrap select[name='clubid']").html(data);
	});
}

function gotoShop(urlname) {
	if(urlname != 0){
		window.location=urlname;
	}
}

function gotoCategory(urlname){
	if(urlname != 0){
		window.location=urlname;
	}
}

function submitMerchantForm(){
	$("#merchantform").submit();
	setTimeout('location.reload(true)', 2000);
}


$('.auto-submit-star').rating({ 
	callback: function(value, link){ 
	} 
	});

$(document).ready(function(){
    $(".shoptoggleclick").click(function () {
      $(".shoptoggle").slideToggle("fast");  
      $(this).text($(this).text() == 'Minder webwinkels in deze categorie' ? 'Meer webwinkels in deze categorie' : 'Minder webwinkels in deze categorie');
    });   
 });

$(document).ready(function() {
	   $('#slider').s3Slider({
	      timeOut: 6000
	   });
	}); 