
/*///////////////////// V-grid //////////////////////////////*/
$(function(){
	$("#main-body").vgrid({
		easeing: "easeOutQuint",
		time: 400,
		delay: 20,
		fadeIn: {
			time: 500,
			delay: 50
		}
	});
});

/*///////////////////// prettyPhoto //////////////////////////////*/
	$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	});

/*///////////////////// Form-Validate //////////////////////////////*/	
$(document).ready(function() {
	$("#form-host").validate();
});

/*///////////////////// print //////////////////////////////*/
function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();	
	}}