$(window).load(function()
{
	$("a[href$='.png'], a[href$='.PNG'], a[href$='.Png'], a[href$='.jpg'], a[href$='.JPG'], a[href$='.Jpg'], a[href$='.GIF'], a[href$='.Gif'], a[href$='.gif'], a[href$='.JPEG'], a[href$='.Jpeg'], a[href$='.jpg']").click(function() {
		$.fancybox({
			'padding'             : 0,
			'autoScale'           : false,
			'transitionIn'        : 'none',
			'transitionOut'       : 'none',
			'title'               : this.title,
			'href'                : this.href,
			'type'                : 'image'
		});
		return false;
	});

	var n = Math.floor(Math.random()*($("#header_pictures img.header_pic").length));
	$("#header_pictures .header_pic").css({"display" : "none"});
	$("#header_pictures .header_pic").eq(n).css({"display" : "block"});

});

