$(document).ready(
function(){
$('.content').fadeTo(0,0.7);
$(".trans").pngfix();
//fullscreen image
// You need to specify the size of your background image here (could be done automatically by some PHP code)
var FullscreenrOptions = {  width: 900, height: 675, bgID: '#bgimg' };


// This will activate the full screen background!
//jQuery.fn.fullscreenr(FullscreenrOptions);
	$(function(){
			$.fn.supersized.options = {  
				startwidth: 900,  
				startheight: 675,
				vertical_center: 1,
				slideshow: 0,
				navigation: 0,
				transition: 1, //0-None, 1-Fade, 2-slide top, 3-slide right, 4-slide bottom, 5-slide left
				pause_hover: 0,
				slide_counter: 1,
				slide_captions: 0,
				slide_interval: 20000  
			};
	        $('#supersize').supersized(); 
	    });

});
