//$(document).ready(function(){ 
//	// PNG FIX
//	$(document).pngFix(); 
//});

$(function() {
	
	//$("#work_acc").tabs(".pane", {tabs: '.pane_btn', effect: 'slide'});
	
	$("div.portfolio_tabs").tabs(".portfolio_panes > div.portfolio_pane", {
 
		// enable "cross-fading" effect
		effect: 'fade',
		fadeOutSpeed: "slow", 
 
		// start from the beginning after the last tab
		rotate: true
 
	// use the slideshow plugin. It accepts its own configuration
	}).slideshow({autoplay:true, interval: 10000, autopause: true, clickable: false});
	//}).slideshow(); 
	
	$(".pane_img img").fadeTo("fast", 0.5);
						$(".pane_img img").hover(function(){
							$(this).fadeTo("fast", 1.0); 
						},function(){
						$(this).fadeTo("fast", 0.5); 
					});
	
});


//$(document).ready(function(){
//					$("#thumbs img").fadeTo("fast", 0.3);
//						$("#thumbs img").hover(function(){
//							$(this).fadeTo("fast", 1.0); 
//						},function(){
//						$(this).fadeTo("fast", 0.2); 
//					});
//				});
