function virtualTour() {
	window.open('vr.php','tour','height=400,width=600,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

function bachPop() {
	window.open('bachelor-popup.php','bachelor','height=400,width=600,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

function tvPop() {
	window.open('/tvspot-popup.php','tvspot','height=576,width=768,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}

function penthouse(strWhich) {
	strHouse = "penthouse-popup.php?which=" + strWhich;
	window.open(strHouse,'bachelor','height=400,width=400,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
}


$(document).ready(function()
{
	$(".newYearsViewMore").click(function(e)
	{
		e.preventDefault();
		$(".newYearsViewMore").hide(200);
		$("#topPackageBottom").slideDown();
	});
	
	$(".newYearsViewLess").click(function(e)
	{
		e.preventDefault();
		$("#topPackageBottom").slideUp();
		$(".newYearsViewMore").show(200);
	});

});

/*
$(document).ready(function(){

	
	
	
	var toggleMinus = 'path/to/minus-image';
	var togglePlus = 'path/to/plus-image';

	var $subHead = $('.children').parent();
	$('.children').parent().children('ul').slideUp('fast');
	$subHead.prepend('<img src="' + togglePlus + '" alt="collapse this section" /> ');
	$('.children').addClass('clickable').click(function() {
	var toggleSrc = $(this).attr('src');
	if ( toggleSrc == toggleMinus ) {
	$(this).attr('src', togglePlus).parent().children('ul').slideUp('fast');
	} else{
	$(this).attr('src', toggleMinus).parent().children('ul').slideDown('fast');
	};
	});
	});
*/ 