//<![CDATA[
$(document).ready(function(){
						   
// h1 hover
	/*$("#subhead").hover(
		function(){
			//
			$(this).replaceWith('<div id="subhead"><a href="/">Home</a></div>');
			$(this).replaceWith('<div id="subhead"><a href="/">Black Music Theatre</a></div>');
	});*/
	$("#logo").hover(
		function(){
			$(".subhead").toggleClass("hide");
			//$(".subhead").toggleClass("hover");
			//$("h1 a").toggleClass("current");
	});
	//$("Black Music Theatre").replaceWith('Home');
	
// menu hover
	/*$("#header .nav ul li").not('.current, .current-cat').hover(
		function(){
			$(this).animate(200, 1.0);
		},
		function(){
			$(this).animate(200, 0.3);
	});*/

// img hover
	/*$("a").hover(
		function(){
			$(this).fadeTo(300, 0.8);
		},
		function(){
			$(this).fadeTo(300, 1);
	});*/
	$(".icons ul li a").css('opacity', '0.3');
	$(".icons ul li a").hover(
		function(){
			$(this).fadeTo(300, 1);
		},
		function(){
			$(this).fadeTo(300, .3);
	});
	
// mailchimp form values
	/*$('#mc_mv_EMAIL').attr('value', 'Email Address *');
	$('#mc_mv_FNAME').attr('value', 'First Name');
	$('#mc_mv_LNAME').attr('value', 'Last Name');*/
	
// ie fadeTo fix
/*jQuery.fn.fadeTo = function(speed,to,callback) { 
    return this.animate({opacity: to}, speed, function() { 
        if (to == 1 && jQuery.browser.msie)  
            this.style.removeAttribute('filter');  
        if (jQuery.isFunction(callback)) 
            callback();  
    }); 
}; */

// strip inline dims
	/*$('body.blog .entry p img, body.archive .entry p img, body.single .entry p img').each(function(){
		$(this).removeAttr('width')
		$(this).removeAttr('height');
		});*/
	



}); //close doc ready
//]]>

