$(document).ready(function(){
  $('ul#menu-header li:first-child').addClass('first');
  $('ul#menu-header li:last-child').addClass('last');
  $('.gallery .gallery-row .gallery-item:last-child').addClass('nomargin');
	$(".project .image").hover(
	function() {
	$(this).find(".sml").stop().animate({"opacity": "0.5"}, "slow")
	$(this).find("span").stop().animate({"opacity": "0.9", top:'40px'}, "slow");
	},
	function() {
	$(this).find(".sml").stop().animate({"opacity": "1"}, "slow")
	$(this).find("span").stop().animate({"opacity": "0.1", top:'+=170px'}, "slow");
	});
	$("a.fancybox").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false,
		'titleShow'     :   false
	});	
	// Add pdf icons to pdf links
	$("a[href$='.pdf']").addClass("pdf");
	// Add txt icons to document links (doc, rtf, txt)
	$("a[href$='.doc'], a[href$='.txt'], a[href$='.docx'], a[href$='.rft']").addClass("txt");
	// Add zip icons to Zip file links (zip, rar)
	$("a[href$='.zip'], a[href$='.rar']").addClass("zip"); 
});


