jQuery(document).ready(function() {
	
	jQuery('#start-boxes .hover-show').hide();
	
	jQuery('.start-box').hover(
		function(e) {
			if(e.target.nodeName != 'P') {
				jQuery('#start-boxes .hover-show').hide();
				jQuery('#start-boxes .hover-hide').show();
			
				jQuery('.hover-show', this).effect('blind', {mode: 'show'});
				jQuery('.hover-hide', this).effect('fade', {mode: 'hide'});
				
			} else if( e.srcElement.nodeName  != 'P') {
				jQuery('#start-boxes .hover-show').hide();
				jQuery('#start-boxes .hover-hide').show();
			
				jQuery('.hover-show', this).effect('blind', {mode: 'show'});
				jQuery('.hover-hide', this).effect('fade', {mode: 'hide'});
			}
		},
		function(e) {
			if(jQuery.browser.msie) {
				jQuery('.hover-show', this).effect('blind', {mode: 'hide'});
				jQuery('.hover-hide', this).show();
			} else {
				jQuery('.hover-show', this).effect('blind', {mode: 'hide'});
				jQuery('.hover-hide', this).effect('fade', {mode: 'show'});
			}
		}
	);
	
	jQuery('.start-box').click(function() {
		var link = jQuery('div a', this).attr('href');
		jQuery(location).attr('href', link);
		return false;
	});
	
});

