// JavaScript Document
$(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({theme: 'facebook'});	
	$("#tabs").tabs({
		show: function(event, ui) {			
			for(i=1;i<=$('#tabs ul li').length;i++)
			{
				//set all tabs to not selected
				var image = $('#tabs ul li:nth-child('+i+') img').attr('src');				
				image = image.split('/');
				//rebuild path
				var path = '';
				for(c=0;c<image.length-1;c++)
					path += image[c] + '/';				
				image = image[image.length-1];
				$('#tabs ul li:nth-child('+i+') img').attr('src',path+(image.replace('-selected','')));
			}	
			var image = $('#tabs ul li:nth-child('+(ui.index+1)+') img').attr('src');
			var path = '';
			image = image.split('/');
			//rebuild path
			for(i=0;i<image.length-1;i++)
				path += image[i] + '/';				
			image = image[image.length-1];
			image_chunks = image.split('.');			
			$('#tabs ul li:nth-child('+(ui.index+1)+') img').attr('src',path+image_chunks[0]+'-selected.'+image_chunks[1]);
		}
	});
});
