// TopPanel slider
$(document).ready(function() {
	
	$(".arr_down").click(function(){
		$("#Panel").slideToggle("normal");
		$(this).toggleClass("Active");
		return false;
	}); 
	
});

// TopPanel AjaxRequest
function timeout_trigger() {
	$('#Panel').load("indexa.html");
}
function AjaxPanel() {
	setTimeout('timeout_trigger()', 1500);
	$('#Panel').html('<p style="padding-top:120px;"><img src="css/images/ajax-loader.gif" alt="Loading..." /></p>');
}

//Caption Sliding (Partially Hidden to Visible)
$(document).ready(function(){
	$('.ItemWrap').hover(function(){
		$(".Caption", this).stop().animate({top:'95px'},{queue:false,duration:160});
	}, function() {
		$(".Caption", this).stop().animate({top:'135px'},{queue:false,duration:160});
	});
});

// Open link in New Tab
$(document).ready(function() {
    $("a[rel=external]").attr('target', '_blank');
});

// Item Scroller
$(document).ready(function(){	
	$(".Scroller").scrollable({ 
		size: 4,
		keyboard: true,
		speed: 200
	});
});