// JavaScript Document

$(function() {
		   
	$('p:last-child').css('margin','0 0 0 0');
	
	$('.post:last').css({
		'border-bottom':'0px',
		'margin-bottom':'0px',
		'padding-bottom':'0px'
		});	
	
	$('#portfolio').accordion({
		autoHeight: false,
		//active:false,
		change: function(){
			$.scrollTo('.ui-state-active', 500, {offset: {top:-10}});
			return false;
			}
		});
	
	//$('#fp-img:hover').animate({ height: 'auto!important' }, 300);


});	
