function main ( ) {
	
	$('#watch_now').click( function () {
		
		var url = 'housingcam/';
		
		var popup = window.open( url, 'housingcam', 'width=704,height=480' );
		
		// we've handled this event, don't let the browser perform its default action
		return false;
	});
	
}

$(document).ready( main );
