$(document).ready(
  function() {
	  
	  //create font outline for selected menu item
	  //$('li.selected').FontEffect(
      //{
	  //		outlineColor1:"#ffffff"	  
	  //	}
	  //);
	  
	  $('li.selected').css({'color':'#edebad'});

	  
	  //create hover effect for non-selected menu items
	  $('ul.menu li.menuButton:not(li.selected) a').hover(
	  function(e){
		  $(this).animate({
				  color: '#b05c6e'
		    }, 150
		  );
	    },
	    function(e){
		  $(this).animate({
				  color: '#ffffff'
		    }, 150
		  );  
	    }
	  );
	  
	  	  	  //create hover effect for all image links on the index page
	  $('div.indexLink').hover(
	  function(e){
		  $(this).animate({
				  'opacity':.7
		    }, 150
		  );
	    },
	    function(e){
		  $(this).animate({
				  'opacity':1.0
		    }, 150
		  );  
	    }
	  );
	  
	  	  //create hover effect for all white links in the html
	  $('a.link_02').hover(
	  function(e){
		  $(this).animate({
				  color: '#b05c6e'
		    }, 150
		  );
	    },
	    function(e){
		  $(this).animate({
				  color: '#fff'
		    }, 150
		  );  
	    }
	  );
	  
	  //create hover effect for all links in the html
	  $('a.link').hover(
	  function(e){
		  $(this).animate({
				  color: '#b05c6e'
		    }, 150
		  );
	    },
	    function(e){
		  $(this).animate({
				  color: '#860038'
		    }, 150
		  );  
	    }
	  );
	  
	  //create hover effect for portfolio items - affects background of label
	  $('div.pLink').hover(
	  function(e){
		  
		  $(this).css({border: '3px solid #b05c6e'});
		  
		  $(this).find('div.imgDes').animate({
				  backgroundColor: '#b05c6e',
				  color:  '#860038'
		    }, 150
		  );
	    },
	    function(e){
			
		 $(this).css({border: '3px solid #e6e7e8'});
			
		  $(this).find('div.imgDes').animate({
				  backgroundColor: '#860038',
				  color:  '#fff'
		    }, 150
		  );  
	    }
	  );
	  
	  //create hover effect for portfolio_02 - affects border of image thumbnail

	  
	  $('div.pLink_02').hover(
	  function(e){
		  $(this).animate({
				  borderTopColor: '#b05c6e',
				  borderRightColor: '#b05c6e',
				  borderBottomColor: '#b05c6e',
				  borderLeftColor: '#b05c6e'
		    }, 150
		  );
	    },
	    function(e){
		  $(this).animate({
				  borderTopColor: '#860038',
				  borderRightColor: '#860038',
				  borderBottomColor: '#860038',
				  borderLeftColor: '#860038'
		    }, 150
		  );  
	    }
	  );
	  
	  //create hover effect for services images - affects border of image thumbnail

	  
	  $('div.pLink_03').hover(
	  function(e){
		  $(this).animate({
				  borderTopColor: '#b05c6e',
				  borderRightColor: '#b05c6e',
				  borderBottomColor: '#b05c6e',
				  borderLeftColor: '#b05c6e'
		    }, 150
		  );
	    },
	    function(e){
		  $(this).animate({
				  borderTopColor: '#e6e7e8',
				  borderRightColor: '#e6e7e8',
				  borderBottomColor: '#e6e7e8',
				  borderLeftColor: '#e6e7e8'
		    }, 150
		  );  
	    }
	  );
	  
	  //initialize facebox lightbox plugin
	  $('a[rel*=facebox]').facebox(
		{
		  loadingImage : 'images/loading.gif',
          closeImage   : 'images/closelabel.gif'	  
	    }
	  );

  }
);
