Shadowbox.init({
    		players: ["iframe"],
			counterType:'skip',
			animSequence:'sync',
			width:400,
			height:600,
			handleOversize:'none',
			overlayColor: '#ccc',
			overlayOpacity: 0.9
});

jQuery(document).ready(function(){
	jQuery("#openForm").click(function(){
		Shadowbox.open({
			content: "/lt/contact_us.php",
			player: "iframe",
			width: 400,
			height: 600
		});
	scroll(0,0);
	return false;
	});
});