var $j = jQuery;
$(document).ready(function() {

	//Caption Sliding (Partially Hidden to Visible)
	$j('.boxgrid.caption').hover(function(){
		$j(".cover", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$j(".cover", this).stop().animate({top:'100px'},{queue:false,duration:160});
	});

	
	//Tabs
	$j("#tabs").tabs();
	
	//Gallery overlay
	$j(".thumbs a").overlay({
        target: '#gallery'
    }).gallery({
        speed: 800
    });
	
	//Iframe overlay
	$j("#triggers a[rel]").overlay();
	
	//Tooltips
	$j('#tTip1').tooltip({speed: 150, delay: 300});
	$j('#tTip2').tooltip({speed: 150, delay: 300});
});