// JavaScript Document
$(document).ready(function(){
$(".preload").css('z-index','-1').fadeOut(7000);
$(".img").css({visibility: "visible"});
//$('.img_numbers').append('<span><a href="#" class="visit_link">VISIT WEBSITE</a></span>');
$(".img_numbers").tabs("> .img", {

	// enable "cross-fading" effect
	//effect: 'fade',
	//fadeOutSpeed: "slow",
	event:'mouseover',

	// start from the beginning after the last tab
	rotate: true

// use the slideshow plugin. It accepts its own configuration
}).slideshow({interval:600, clickable:true,autopause:false});
$('.img').mouseover(function(){
$(this).parent().find(".img_numbers").data("slideshow").play();
});
$('.img').mouseout(function(){
$(this).parent().find(".img_numbers").data("slideshow").stop();
})	
});
$(document).ready(function(){
	$('span.project_credits, div.project_credits').hover(function(){
				$('a.category_link').css('z-index','-1');
				$('div.project_credits').css({display:'block'}).stop().animate({opacity:'1'}, 200);
				$('span.project_credits').stop().animate({left:'20px'}, 200);
				
			}, function (){
				$('a.category_link').css('z-index','1');
				$('div.project_credits').css({display:'none'}).stop().animate({opacity:'0'}, 200);
				$('span.project_credits').stop().animate({left:'0px'}, 200);
				//$('a.category_link').css({z-index:'1'});
			});	
	//alert($('div.project_credits').height());

});
