//JavaScript Document
//Place functions within this document
//Call functions within the dom ready in the html page

var expand_apartments  = function() {
	$('navMask_apartments').tween('height', '152px');
	contract_current();
}
var contract_apartments  = function() {
	$('navMask_apartments').tween('height', '27px');
	expand_current();
}
var expand_amenities  = function() {
	$('navMask_amenities').tween('height', '152px');
	contract_current();
}
var contract_amenities  = function() {
	$('navMask_amenities').tween('height', '27px');
	expand_current();
}
var expand_gallery  = function() {
	$('navMask_gallery').tween('height', '152px');
	contract_current();
}
var contract_gallery  = function() {
	$('navMask_gallery').tween('height', '27px');
	expand_current();
}
var expand_residents  = function() {
	$('navMask_residents').tween('height', '152px');
	contract_current();
}
var contract_residents  = function() {
	$('navMask_residents').tween('height', '27px');
	expand_current();
}
var expand_location  = function() {
	$('navMask_location').tween('height', '152px');
	contract_current();
}
var contract_location  = function() {
	$('navMask_location').tween('height', '27px');
	expand_current();
}
var expand_contactUs  = function() {
	$('navMask_contactUs').tween('height', '152px');
	contract_current();
}
var contract_contactUs  = function() {
	$('navMask_contactUs').tween('height', '27px');
	expand_current();
}
var expand_current  = function() {
	$($currentPage).tween('height', '152px');
}
var contract_current  = function() {
	$($currentPage).tween('height', '27px');
}
