$(document).ready(function(){ 
	
	// MAKES THE DIV.BLOCK CLICKABLE
	$(".block").click(function(){
		window.location=$(this).find("a").attr("href");
		return false;
	});
	
	// NEWSLETTER SYSTEM ALTERATIONS
	$("legend b").before("<br />");
	$("#allcontent :submit[value=Log ud]").remove();


	// COLORBOX VARIATIONS AND CALLERS
	$(".newsletter").colorbox({iframe:true, scrolling:false, close:"<img src='fileadmin/template/v2/images/colorbox/close.png' alt='close' />", innerWidth:500, innerHeight:650});
	$(".frontlist .external-link-new-window").colorbox({iframe:true, scrolling:false, close:"<img src='fileadmin/template/v2/images/colorbox/close.png' alt='close' />", innerWidth:800, innerHeight:600});
	$(".example8").colorbox({width:500, height:300, inline:true, href:"#inline_example1"});

		// Stopper flash animationen i baggrunden
		$(".newsletter, .example8, .frontlist .external-link-new-window").bind('cbox_open', function(){
			$('object, embed').css({'visibility':'hidden'});
		}).bind('cbox_closed', function(){
			$('object, embed').css({'visibility':'inherit'});
		}); 

});