// ---------------------------------------------------------
// jQuery
// ---------------------------------------------------------


jQuery(function ($) {
	$(document).ready(function(){
		$(".home .portfolio-home:last").addClass("last");
		
	});
});

jQuery(function ($) {
	$(document).ready(function(){
		$('.portfolio-home:nth-child(3)').after("<hr>");
		$('#homepage-content>.portfolio:nth-child(3n+3)').after("<hr>");
	});
});

jQuery(function ($) {
	$(document).ready(function(){
		$('#categories-3 > ul > li:last-child').css('border-bottom','1px solid #F2F3F2');
		
	});
});

<!-- //last class for footer menu// -->

jQuery(function ($) {
	$(document).ready(function(){
		$(".module-wrapper .one-third:last").addClass("last");	
	});
});


<!-- // Menu Opacity // --> 

jQuery(function ($) {
	$(document).ready(function () {

	    $("#access .menu-header li").hover(
	        function () {
	        	$('ul', this).slideDown(300);
	            $('ul', this).animate({ opacity: "show" }, "slow");
	        },
	        function () {
	            $('ul', this).animate({ opacity: "hide" }, "slow");        
	        }
	    );

	});
});	

function mailpage()
{
mail_str = "mailto:?subject=Check out the " + document.title;
mail_str += "&body=I thought you'd like to see the " + document.title;
mail_str += ". You can view it at, " + location.href;
location.href = mail_str;
}
