jQuery(document).ready(function(){

	// Zet een a-tag om alle img-tags in #content
	/*
	jQuery("#content img").each(function() {
		var sr = jQuery(this).attr('src');
		jQuery(this).css('border','3px');
	   	jQuery(this).wrap('<a rel="thumbnail" href="'+ sr +'"></a>');
	});
	*/
	
	jQuery("#parent1").css('display','block');
	//jQuery("#parent1").css('background','#F3F3F3');
	jQuery("#parent1 li").css('padding','10px');
	jQuery("#parent1").wslide({
		width: 292,
		height: 380,
		pos: 4,
		horiz: true,
		duration: 700,
		autolink: 'menu3'
	});

	
		
});

/* OFFICIAL NOTATION
$(document).ready(function(){
	$("#parent1").css('display','block');
	$("#parent1").css('background','#F3F3F3');
	$("#parent1 li").css('padding','10px');
	$("#parent1").wslide({
		width: 292,
		height: 380,
		pos: 4,
		horiz: true,
		duration: 700,
		autolink: 'menu3'
	});
});
*/


