var options = { path: '/', domain: 'planeeths.nl', expires: 10 };
var loading = '<center><img src="/images/site/2010/loading.gif" style="margin-top: 40px;"></center>';

$(document).ready(function() {

	// First page visit, set default categories

	if($.cookie('pageLoaded') != 'true') {
		$.cookie('filterVideo', '1', options);
 		$.cookie('filterGame', '1', options);
		$.cookie('filterGallery', '1', options);
		$.cookie('filterNSFW', '0', options);
		$.cookie('pageLoaded', 'true', options);
	}

	// check for category keyword in string
	// if found,  skip checkboxes

	var fullurl = location.href;
	var instring = fullurl.search("category");
	
	if(instring == -1) {

		if($.cookie('filterVideo') == '1') $("#MediabaseFilterVideo").attr('checked', true);
		if($.cookie('filterGame') == '1') $("#MediabaseFilterGame").attr('checked', true);
		if($.cookie('filterGallery') == '1') $("#MediabaseFilterGallery").attr('checked', true);
		if($.cookie('filterNSFW') == '1') $("#MediabaseFilterNSFW").attr('checked', true);
	}

	// checkbox change event
	
	$("form#filter input:checkbox").change(function() {

		var url = "";

		if($("#MediabaseFilterVideo").is(':checked')) { 
			url = url+'/video';
			$.cookie('filterVideo', '1', options );
		} else {
			$.cookie('filterVideo', '0', options );
		}

		if($("#MediabaseFilterGame").is(':checked')) { 
			url = url+'/game';
			$.cookie('filterGame', '1', options ); 
		} else {
			$.cookie('filterGame', '0', options ); 
		}

		if($("#MediabaseFilterGallery").is(':checked')) { 
			url = url+'/gallery';
			$.cookie('filterGallery', '1', options );
		} else {
			$.cookie('filterGallery', '0', options );
		}

		if($("#MediabaseFilterNSFW").is(':checked')) { 
			url = url+'/nsfw';
			$.cookie('filterNSFW', '1', options );
		} else {
			$.cookie('filterNSFW', '0', options );
		}

		var currentURL = "http://www.hersenscheet.com/mediabase/category";
		var newURL = currentURL+url;
		window.location = newURL;
	});

	// Mediabse title switcher

	$("form#mediabase-title-form").change(function() {

		if($('#mediabase-title-switch').is(':checked'))  {
			$('div.mediabase-title').toggle();
			$.cookie('showMediabaseTitles', '1', options );
		} else {
			$('div.mediabase-title').toggle();
			$.cookie('showMediabaseTitles', '0', options );
		}
	});

	// check cookie

	if($.cookie('showMediabaseTitles') == '1') {
		$("div.mediabase-title").show();
		$("#mediabase-title-switch").attr('checked', true);
	} 
	else {
		$("div.mediabase-title").hide();
		$("#mediabase-title-switch").attr('checked', false);
	}

	// Load top 5 box

	$.ajax({
	  url: "/index.php/ajax/component-topfive-mediabase?p=week",
	  cache: false,
	  onrequest: $("#top-five-content").html(loading),
	  success: function(data){
		$("#top-five-content").html(data);
	  }
	});	

});

