// uitzondering flashvideos
jQuery(document).ready(function($) {
	if (Request.QueryString("subcategoryid").Count > 0) {
		var catid = parseInt(Request.QueryString("subcategoryid"));
		switch(catid){
			case 106: // Scootmobielen -- Opvouwbaar
				$("#modelvideo").hide();
				$("#categorievideo").show();
			break;
			default:
				//nothing yet
		}
	}
});


