(function($) {

	$('#menu-main-nav li:last').addClass('last');
	
	$('.post-title a').hover(function() {
		$(this).stop().animate({
			left: '15px'
		}, 500);
	 }, function() {
     	$(this).stop().animate({
			left: '0px'
		}, 500);
	 });
	
	$('#commentform input#submit').addClass('button box-round');

	/* Mobile JS  
	Large Screen Only		
	if(document.body.offsetWidth > 480) {
	
	}
	
	Mobile
	if(document.body.offsetWidth <= 480) {

	}
	*/
	
})(jQuery)
