$(document).ready(function() {
	$("a[rel=exampleReload]").fancybox({
		'height' : 475,
		'width'  : 500,
		'overlayColor' : '#000',
		'overlayOpacity' : 0.3,
		'overlayShow'	: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn' : 400,
		'speedOut' : 200,
		'showNavArrows' : false,
		'scrolling' : 'no',
		'enableEscapeButton' : true,
		'type': 'iframe',
		'titlePosition'	: 'inside',
		'onClosed': function() {
		    parent.location.reload(true); ;
		}
	});
	$("a[rel=rateMeter]").fancybox({
		'height' : 675,
		'width'  : 800,
		'overlayColor' : '#000',
		'overlayOpacity' : 0.3,
		'overlayShow'	: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn' : 400,
		'speedOut' : 200,
		'showNavArrows' : false,
		'scrolling' : 'no',
		'enableEscapeButton' : true,
		'type': 'iframe',
		'titlePosition'	: 'inside'
	});
	$("a[rel=messages]").fancybox({
		'height' : 600,
		'width'  : 800,
		'overlayColor' : '#000',
		'overlayOpacity' : 0.3,
		'overlayShow'	: true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'speedIn' : 400,
		'speedOut' : 200,
		'showNavArrows' : false,
		'scrolling' : 'no',
		'enableEscapeButton' : true,
		'type': 'iframe',
		'titlePosition'	: 'inside'
	});
});

function autoCloseFancyBox(seconds){
	var waitTime = seconds*1000
	setTimeout("parent.$.fancybox.close();",waitTime);
}

function openVehcileFancyBox(seconds){
	var waitTime = seconds*1000
	setTimeout("parent.$.fancybox.close();",waitTime);
}
