/**
**	Congrats, You find this file, dont forget to slap me with big throat :) Happy Learning or Copy Pasting
** slap me through chazzuka@gmail.com or visit my site http://www.chazzuka.com
**/
jQuery(document).ready(function($){
	$('#homepage-container img.slide-bg').hide(); $('#homepage-container img.slide-bg:first-child').show();$('#homepage-navi ul li:first-child a').addClass('active');
	var curIndex = 1;
	$('#homepage-navi ul li a').each(function(i){
		$(this).click(function(){
			if(curIndex != i+1){
				$('#homepage-navi ul li a.active').removeClass('active'); $(this).addClass('active');
				$('#homepage-container img.slide-bg:nth-child('+curIndex+')').fadeOut(1200); $('#homepage-container img.slide-bg:nth-child('+(i+1)+')').fadeIn(1200);
				curIndex = i+1;
				$('.cropping').stop().animate({marginTop:'-'+(i*340)+'px'},800,'easeOutExpo');
			} return false;
		});
	});
});