$(document).ready(function(){

	$('a').click(function() {
		$(this).blur();
	})

	$('a.thumbnail').parent().css('width','781px');

	$('.portfolio #right div').jScrollPane();

	$('#left .portfolio_menu li:not(.current) a').hover(function() {
		$(this).parent().addClass('hovering');
	}, function() {
		$(this).parent().removeClass('hovering');
	})


	//PACKAGE HEIGHTS
	var tallest = 0;
	$('.package_box ul').each(function() {
		var current_height = $(this).height();
		if (current_height > tallest) {
			tallest = current_height;
			
		}
	})
	
	$('.package_box ul').each(function() {
		var diff = tallest - $(this).height();
		diff /= 2;
		$(this).css('padding-top', diff + 'px').css('padding-bottom', diff + 'px');
	})

});

