// JavaScript Document

jQuery(document).ready(function($){
	
	$('.open-mls-window').click(function(){
		openMLS();
		return false;
	});
	
	$('#header ul li.heading').hover(function(){
		var $ul = $('ul', this);
		$ul.show().data('mouseover', 'yes');
	}, function(){
		var $ul = $('ul', this);
		$ul.data('mouseover', 'no');
		$ul.animate({opacity: 1.0}, 500, '', function(){
			if($ul.data('mouseover') == 'no'){
				$(this).hide();
			}
		});
	});
	
});

function openMLS(){
	
	var WindowObjectReference;
	var strWindowFeatures = "menubar=yes,location=no,resizable=no,scrollbars=yes,status=yes,width=800px,height=600px";

	WindowObjectReference = window.open('http://wenatchee.realtyidx.net/index.asp?align=center', 'mls_window', strWindowFeatures);
	
}