/* Background */
$(function($) {
	$("#body").delay(500).animate({opacity:"1"}, 1000)
	$("#nav ul.dropdown li").delay(900).animate({opacity:"1"}, 500)
});

/* Image Hover */
$(function(){
  $('#header a, #main a').hover(function(){
		$('img',$(this)).stop().animate({opacity:"0.75"}, 150)
	},function(){
		{
			$('img',$(this)).stop().animate({opacity:"1"}, 150)
		}
	})
});

/* Menu Current State */
$(document).ready(function(){
     $("li a").each(function() { 
  if(this.href == window.location.href.split("#")[0]) {
        $(this).parent().addClass("current");
  }
     });
});

/* Shorten Special Text */
function shorten(n, l) {
     var str = document.getElementById(n).innerHTML;
     
     if(str.length > l){  
         var s = str.substr(0, l);
         var words = s.split(' '); 
         words[words.length-1] = '';
         str = words.join(' ') + '...'
     }
     
     document.getElementById(n).innerHTML = str;
}
