// JavaScript Document
$(function(){
	$('a[href*=www],a[href*=http],a[href*=pdf]').not('a[href*='+location.hostname+']').attr('target','_blank');

	$('.img_rotation').eRotate({finalWidth:250,finalHeight:250,fxInterval:2000,fxSpeed:1000,randomStart:1});
	$('.art_rotation').eRotate({finalWidth:250,finalHeight:280,fxInterval:2000,fxSpeed:1000,randomStart:1});
	
	// Setup category navigation slider
	$('#slider').css({opacity:0});
	$('#sec_nav a').hover(function(){ 
		var pos = $(this).position();
		var width = $(this).outerWidth() + 24;
		$('#slider').stop(true,false).animate({opacity:1,width:width+'px',left:pos.left -13+'px'},300);
	},function(){ 
		$('#slider').animate({opacity:0},400); 
	}
	);
});
