		// GOOGLE ANALYTICS
		var _gaq = _gaq || [];
		_gaq.push(['_setAccount', 'UA-682365-11']);
		_gaq.push(['_setDomainName', 'magdalenaduma.com']);
		_gaq.push(['_trackPageview']);
		(function() {
		var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
		})();

		// JQUERY ONLOAD
		jQuery(document).ready(function() {

			jQuery('#navFrame ul').superfish({
    				hoverClass:'sfhover',
    				autoArrows:false, 
    				dropShadows:false, 
            		animation:{opacity:'show'},
					speed:'normal',
           			delay:600 
			});
			
			// clear input on focus
			jQuery(".clearMeFocus").focus(function(){
				if( $(this).val() == $(this).attr("title") ){
					$(this).val("");
				}
			});

			// if field is empty afterward, add text again
			jQuery(".clearMeFocus").blur(function(){
				if( $(this).val() == "" ){
					$(this).val( $(this).attr("title") );
				}
			});

		});
