$(document).ready(function() {
	$("#showcase img[rel]").overlay({
		effect: 'apple',
		oneInstance: 'false',
		expose: {maskId: 'mask'},
		onBeforeLoad: function() { 
            // grab wrapper element inside content 
            var wrap = this.getContent().find(".details"); 
            // load the page specified in the trigger 
            wrap.load(this.getTrigger().parent().attr("href")); 
        } 
	});
	
	$("#drawer img[rel]").overlay({
		effect: 'apple',
		oneInstance: 'false',
		expose: {maskId: 'mask'},
		onBeforeLoad: function() { 
            // grab wrapper element inside content 
            var wrap = this.getContent().find(".details"); 
            // load the page specified in the trigger 
            wrap.load(this.getTrigger().parent().attr("href")); 
        } 
	});
	
	$("#mask").live("click", function() {
		$(".close").trigger('click');
	});
	
	
	
	// Mouseovers
	//Full Caption Sliding (Hidden to Visible)
	$('.boxgrid.captionfull').hover(function(){
		$(".cover", this).stop().animate({top:'115px'},{queue:false,duration:160});
	}, function() {
		$(".cover", this).stop().animate({top:'175px'},{queue:false,duration:160});
	});
	
	// Contact Form jQuery
	$("#sendmessage").click(function() {
		$("#contactform").submit();
		return false;
	});

	
});