// avoid namespace conflicts with yahoo js framework
$.noConflict();

// bind click event to opening page
jQuery(document).ready(function($) {
	jQuery('#index-splash').bind('click',function(){
		jQuery(this).hide();
	});
	
	jQuery('#index-splash').delay(8400).fadeOut(800);
});


