// JavaScript Document

//#####################################################################     
//###############     CopyRight Granville Design      #################
//###############       http://www.granville.nl       #################
//#####################################################################
//# @GD 2009 														  #
//# property.script.js												  #
//#####################################################################

// jQuery
$(document).ready(function() {
	
	// FANCYBOX: runs the fancybox plugin
	// DEPENDABILITIES: jquery.easing.js
	$('.jFancybox').fancybox({
		'frameWidth': 620,
		'frameHeight': 450,
		'overlayOpacity':0.6
	});
	
	// FANCYBOX: runs the fancybox plugin
	// DEPENDABILITIES: jquery.easing.js
	$('.jFancyboxRefresh').fancybox({
		'frameWidth': 620,
		'frameHeight': 450,
		'overlayOpacity':0.6,
		'callbackOnClose': function() { window.location.reload(true); }
	});

});