$(document).ready(function(){
	
	jQuery.fn.exists = function(){return jQuery(this).length>0;}
	
	$("#HangingLinkContainer a img").mouseover(function () {
		$(this).effect("bounce", { times:3 }, 300);
	});
	
	var currentSitePath = location.pathname.toLowerCase().split('/');
	if ( currentSitePath[1] == 'sfvm' ){
		if ( $('#nav_' + currentSitePath[2] + ' a').exists() ) {
			$('#nav_' + currentSitePath[2] + ' a').addClass('nav_' + currentSitePath[2] + '_hover');
		}
	} else {
		if ( $('#nav_' + currentSitePath[1] + ' a').exists() ) {
			$('#nav_' + currentSitePath[1] + ' a').addClass('nav_' + currentSitePath[1] + '_hover');
		}
	}
	
});



