// JavaScript Document

(function($){
	
    $(document).ready(function() {		
		$('#drop-nav:first').children().hover(
    		function(){
				$(this).addClass('hover');
				$('ul:first', this).children().hover(
    				function(){
						$(this).addClass('hover');
    				},
    				function(){
        				$(this).removeClass('hover');
    				}
    			);
    		},
    		function(){
        		$(this).removeClass('hover');
    		}
    	);
		$('input[type=submit]').hover(
			function(){
				$(this).addClass('hover');
    		},
    		function(){
        		$(this).removeClass('hover');
    		}
		);
		
		$('a.contact').fancybox();
		
		$('a.contact').attr('href', '/popup');
		
		$('.calculators a').click(function(){
			var val = $(this).attr('href');
			window.open(val,'mywindow','height=500,width=500,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no');
			return false;
		});
    });
})(jQuery);
