$(document).ready(function() {
					
	$("a#Fancybox").fancybox({
		'width'				: '50%',
		'height'			: '50%',
		'autoScale'			: true,
		'transitionIn'		: 'true',
		'transitionOut'		: 'true',
		'scrolling'		: 'no',
		'overlayShow'		: true
	});
				
	$("a[rel=photoalbum]").fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'			: true,
		'transitionIn'		: 'true',
		'transitionOut'		: 'true',
		'scrolling'		: 'no',
		'overlayShow'		: true
	});
	
	
	checkPage();
	changeBG();
	
	$(window).bind('resize',function(){
     window.location.href = window.location.href;
	});
	
	var width = $(window).width();
		
	if(width >= 1200){
		
		$('#sidebar').css('display','block');
	}else{
		$('#sidebar').fadeOut('slow');
	}

});
var visit_p = false;
var randomnumber=Math.floor(Math.random()*7)

function checkPage(){
	
	if(PAGE == 'photos'){
		visit_p = true;
		visitPhotos();
		changeBG();
	}
	else{
		visit_p = false;
	}
	
}


function visitPhotos() {
	
	if(visit_p){
		$('#extended_wrap').toggle('fast');
		$('#container').css({'background-image' : 'none' , 'border' : '0px' , 'background-color' : 'transparent'});
		$('#sidebar').toggle('fast');
		$('#photopanel').toggle('slow');
	}
	else{
		return false;
		visit_p = false;
	}
}

function changeBG() {
	$('body').css({'background-image': 'url('+URL+'/includes/design/imgs/bg_'+randomnumber+'.jpg)'});
}
