/**
 * js/miscscripts.js
 * 
 * @author Jon Zuck -- jon.zuck@resiteonline.com
 * @version $Id$
 */

//<![CDATA[	

//creates separators for nav bars 

$(function() {
	$("#topNav li").not(":last").addClass("sep");
	$("#topNav li").not(":last").append("&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;&nbsp;");   
	$("#lowerNav li").not(":last").append("&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;&nbsp;");
	$("#subNav li").not(":last").append("&nbsp;&nbsp;&nbsp;&bull;&nbsp;&nbsp;&nbsp;");   
});


// Make numbers align right (emailafriend.php)

$(function() {
	var marginRight="0";	
	$(".sendToFriend td[align=right]").addClass("right");
});

// Open the Apply Now form

function OpenApp(cid) {
	newWin = window.open('https://secure.resiteit.com/apps/?cid='+cid,'App','toolbar=no, location=no, status=yes, menubar=no, scrollbars=yes, resizable=yes, width=700 ,height=500');
}

//]]> 
 