/*******************************************************************************

	Title: AndyWidodo.com
	Author: Andy Widodo
	Date: July 2011

*******************************************************************************/


$(document).ready(function() {
	
	if($('.container').is('#homepage')) {
		$('#sidebar  section:nth-child(3)').css({margin: '0', padding: '0'});
		$('.slideshow').cycle({
			fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			speed:  500,
			timeout: 8000,
			fit: 1,
			width: '100%',
			after: function onAfter() {					
						//get the height of the current slide
						var $ht = $(this).height();
						//set the container's height to that of the current slide
						$(this).parent().animate({height: $ht});
					}
		});
		
	}
	
	if($('.container').is('#resumepage')) {
		$('article .experience:last-child').css({border: 'none', margin: '0', padding: '0'});
		$('#resumepage #content article:last-child').css('border','none');
	}
	
});



