// JavaScript Document

$(document).ready(function() {
	// hides the slickbox as soon as the DOM is ready
	$('.information').hide();
	// shows the slickbox on clicking the noted link
	$('.readmore a').toggle(
		function() {$('.information').slideDown(100); return false;},
		function() {$('.information').slideUp(100);	return false;}
	);
});
$(function(){
	$("#grid_content").vgrid({ easeing: "easeInQuad", time: 1000, delay: 200});
});

// Display the name box text on hover Client Menu
$.fn.showFeatureText = function() {
	return this.each(function(){    
		var box = $(this);
		var text = $('span',this);
		
		box.hover(
			function(){text.animate({opacity: "show", top:"-65px"},"5000","easeInSine")},
			function(){text.animate({opacity: "hide", top:"-85px"},"fast","easeOutSine")}
					);
	});
}	

