$(document).ready(function() {

   $('li#nav-01').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '0px 39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '0px 0px'}); });
   $('li#nav-02').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-98px 39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-98px 0px'}); });
   $('li#nav-03').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-211px -39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-211px 0px'}); });
   $('li#nav-04').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-326px -39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-326px 0px'}); });
   $('li#nav-05').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-444px -39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-444px 0px'}); });
   $('li#nav-06').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-551px -39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-551px 0px'}); });
   $('li#nav-07').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-640px -39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-640px 0px'}); });
   $('li#nav-08').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-736px -39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-736px 0px'}); });
   $('li#nav-09').mousedown(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-886px -39px'}); }).mouseup(function() { $(this).css({backgroundImage:'url(../images/bg-nav.gif)',backgroundPosition: '-886px 0px'}); });
   
   $('li.aaha a').mousedown(function() { $(this).css({backgroundPosition: '0px -76px'}); }).mouseup(function() { $(this).css({backgroundPosition: '0px 0px'}); });
   $('li.oppurtunities a').mousedown(function() { $(this).css({backgroundPosition: '0px -58px'}); }).mouseup(function() { $(this).css({backgroundPosition: '0px 0px'}); });
   $('li.aarp1 a').mousedown(function() { $(this).css({backgroundPosition: '0px -58px'}); }).mouseup(function() { $(this).css({backgroundPosition: '0px 0px'}); });
   $('li.portal a').mousedown(function() { $(this).css({backgroundPosition: '0px -58px'}); }).mouseup(function() { $(this).css({backgroundPosition: '0px 0px'}); });
   
   $('#nav-bar li').mousedown(function() { $(this).css({backgroundPosition: '0px -85px'}); }).mouseup(function() { $(this).css({backgroundPosition: '0px 0px'}); });
   
   $('form#contact-form > ul > li > input,form#contact-form > ul > li > textarea').focus(function () {
	if ($(this).val() === $(this).attr('title')) {
	$(this).val('');
	}
	}).blur(function () {
	if ($(this).val() === '') {
	$(this).val($(this).attr('title'));
	}
	});

	$('ul#portfolio').innerfade({
	speed: 750,
	timeout: 6500,
	type: 'sequence',
	containerheight: 	'330px',
	slide_timer_on: 	'yes',
	slide_ui_parent: 	'portfolio',
	slide_ui_text:		'null',
	pause_button_id: 	'null',
	slide_nav_id:		'null'
	});
	$.setOptionsButtonEvent();

	$("#next_button").click(function() {
		$.next();
	});
	
	$("#prev_button").click(function() {
		$.prev();
	});
	
	$('#slide_control li').hover(function() { $(this).css({opacity: '1',cursor: 'pointer'}); },function() { $(this).css({opacity:'0',cursor: 'default'}); });
	
	
	


});


