jQuery(document).ready( function() {
	// emulate hover event for ie
	/*
	if (navigator && navigator.appName) {
		if (navigator.appName.match(/Internet( )+Explorer/)) {
			$('input').focusin( function() { $(this).addClass('focused')});
			$('input').focusout( function() { $(this).removeClass('focused')});
		}
	}
	*/
	
	// fix position of google maps directions div
	var directionsMapSelector='[id$=_directions]';
	if ($(directionsMapSelector).length) {
		var directionsMap=$(directionsMapSelector);
		directionsMap.addClass('direction-map');
		directionsMap.prependTo('#content-main-right .content-text');
	}

});
