google.load("jquery", "1.3.2");
google.load("swfobject", "2.1");

google.setOnLoadCallback(function() {
	core();
});

function hanleRandomDivs()
{
	$(".random").each(function() {
		var nthChild = Math.floor(Math.random() * $(this).children().size() + 1);

		$(this).find(":nth-child(" + nthChild + ")").show();
	});
}

function custom()
{
	$("#jsddm li:last").addClass('last');
}

function handleVideos()
{
	$(".videoItem").each(function(i) {
		var vars = { 'file': $(this).find('img').attr('rel'), 'stretching': 'exactfit'};
		var params = { menu: 'false', allowfullscreen: 'true' };
		var attributes = { id: $(this).find('img').attr('id'), name: $(this).find('img').attr('id') };
		
		swfobject.embedSWF('http://www.websitebeheermodule.nl/Lib/WYSIWYG/swf/player.swf', $(this).find('img').attr('id'), $(this).find('img').width(), $(this).find('img').height(), "9.0.0", "", vars, params, attributes);	
	});
}

function core()
{
	custom();

	hanleRandomDivs();
	
	handleVideos();
}

