// JavaScript Document
//jQuery.noConflict();

jQuery(document).ready(function ($) {
								 
	/* vgrid */
	
	$(function(){
		$("#grid-content").vgrid({easeing: "easeOutQuint", time: 400, delay: 0});
	});
				
	$(".showcaseimage").hover(
		function() {
				$(this).children(".showcaseimagecaption_low").animate({"bottom" : 0},  {duration: 300, easing: "easeOutQuint"});
				$(this).children(".showcaseimagecaption_high").animate({"top" : 0},  {duration: 300, easing: "easeOutQuint"});
		},
		function() {
		
				$(this).children(".showcaseimagecaption_low").animate({"bottom" : -50},  {duration: 300, easing: "easeOutQuint"});
				$(this).children(".showcaseimagecaption_high").animate({"top" : -50}, {duration: 300, easing: "easeOutQuint"});
	 	}
	 );

		
});

