// JavaScript Document

$().ready(function() {
	$('.contentplayerimg a.slidelink').click(function() {
		$('.contentplayerimg a.slidelink').removeClass('active');
		var numpics = $(this).attr('title')-1;
		$('.contentplayerimg img.active').hide().removeClass('active');
		$('.contentplayerimg img').each(function(index) {
			if(index == numpics) $(this).fadeIn('slow').addClass('active');
		});
		$('.contentplayerimg a.slidelink').each(function(index) {
			if(index == numpics) $(this).addClass('active');
		});
	});
	
	$('.contentplayerimg a.rightarrow').click(function() {
		var numpics;											   
		$('.contentplayerimg img').each(function(index) {
			if( $(this).hasClass('active') ) numpics = $(this).attr('alt');							 
		});
		if( $('.contentplayerimg img').size() == numpics) numpics = 0;
		$('.contentplayerimg a.slidelink').removeClass('active');
		$('.contentplayerimg img.active').hide().removeClass('active');
		$('.contentplayerimg img').each(function(index) {
			if(index == numpics) $(this).fadeIn('slow').addClass('active');
		});
		$('.contentplayerimg a.slidelink').each(function(index) {
			if(index == numpics) $(this).addClass('active');
		});
	});
	
	$('.contentplayerimg a.leftarrow').click(function() {
		var numpics;											   
		$('.contentplayerimg img').each(function(index) {
			if( $(this).hasClass('active') ) numpics = $(this).attr('alt');							 
		});
		numpics -= 2;
		if( numpics < 0 ) numpics = $('.contentplayerimg img').size()-1;
		$('.contentplayerimg a.slidelink').removeClass('active');
		$('.contentplayerimg img.active').hide().removeClass('active');
		$('.contentplayerimg img').each(function(index) {
			if(index == numpics) $(this).fadeIn('slow').addClass('active');
		});
		$('.contentplayerimg a.slidelink').each(function(index) {
			if(index == numpics) $(this).addClass('active');
		});
	});
	
	$('.showtweet').prepend( $('#tweet').html() );
	
	$('.photolightbox').lightBox({
		imageLoading: 'http://www.deborahmilano.com/web/commons/js/jquery-lightbox-0.5/images/lightbox-ico-loading.gif',
		imageBtnClose: 'http://www.deborahmilano.com/web/commons/js/jquery-lightbox-0.5/images/lightbox-btn-close.gif',
		imageBtnPrev: 'http://www.deborahmilano.com/web/commons/js/jquery-lightbox-0.5/images/lightbox-btn-prev.gif',
		imageBtnNext: 'http://www.deborahmilano.com/web/commons/js/jquery-lightbox-0.5/images/lightbox-btn-next.gif'
	});
});
	
