$(document).ready(function() {
	
	$(window).resize(function()
	{
		setBackground();
	});			
	setBackground();
	

});

/* Set background properties */
function setBackground()
	{
	// get BROWSER Height / width
		var browserwidth = $(window).width();
		var browserheight = $(window).height();	

	// set Height on Wrappers
		$("#bgwrapper").css({ 'height' : browserheight});
		$("#wrapper").css({ 'height' : browserheight});	
		$("#container").css({ 'min-height' : browserheight});		
		
	// Set Height on iFrame	
		$("#micro").css({ 'height' : browserheight - 90});

	// get new content height
		var contentHeight = $("#MicroContent").height();
	
		$("#container").css({ 'height' : browserheight});	

		$(".blogtransparent .transparency").css({ 'height' : contentHeight });	

	}





