// JavaScript Document

(function($){
    $(document).ready(function() {
        $('#searchTerm').example('Search', { className: 'gray'});
		$('#nav ul:first').children().hover(
    		function(){
        		$('ul', this).css('top', '20px');
				$('a', this).css('background', 'url('+"/layout/images/grey-transparent-bkgrd.png"+') repeat 0 0');
				$('ul li a', this).css('background', '').hover(function(){ $(this).css('text-decoration', 'underline');}, function(){$(this).css('text-decoration', 'none');});
				$('a', this).css('color', '#fff');
				$('a#home-link', this).css('background', '#f7941e');
				$('a#home-link', this).css('color', '#fff');
    		},
    		function(){
        		$('ul', this).css('top', '-200em');
				$('a', this).css('background', '');
				$('a', this).css('color', '');
				$('a#home-link', this).css('background', '');
				$('a#home-link', this).css('color', '');
    		}
    	);
		$("a.iframe").fancybox({
            'hideOnContentClick': false,
            'padding': 0,
            'frameWidth': 700,
            'frameHeight': 500
   		});
		$("a.fancy").fancybox({
            'hideOnContentClick': false
   		});
    });
})(jQuery);
