(function($){
    $(document).ready(function(){
	
	//localScroll
	$.localScroll();
	
	//IE6 version check
	if (!((jQuery.browser.msie) && (parseInt(jQuery.browser.version) < 7))) {
	
		//flash header sidebar right
		/*$('#sb2back').flash({
	    	src: 'http://www.xiuzhendao.it/wordpress/flash/autunno.swf',
	    	width: '180px',
	    	height: '100px',
			wmode: 'transparent'
	    });*/
	    
	    $('#sb2back').css({
			height: '196px',
			left: '0px',
			top: '-200px'
		}).flash({
	    	src: 'http://www.xiuzhendao.it/wordpress/flash/primavera.swf',
	    	width: '209px',
	    	height: '200px',
			wmode: 'transparent'
	    });
	    
	    /*$('#sb2back').css({
			height: '200px',
			left: '5px',
			top: '-200px'
		}).flash({
	    	src: 'http://www.xiuzhendao.it/wordpress/flash/inverno.swf',
	    	width: '209px',
	    	height: '200px',
			wmode: 'transparent'
	    });*/
	    
	    //wuxing flash
	    $('#wuxing').flash({
	    	src: 'http://www.xiuzhendao.it/wordpress/flash/wuxing/shui.swf',
	    	width: '150px',
	    	height: '100px',
			wmode: 'transparent'
	    });
		    
	    //fancybox (manda in crash IE6!?)
		$('.ngg-gallery-thumbnail a').fancybox();	//main gallery
		$('.ngg-widget a').fancybox();				//sidebar widget 'ultime foto'
		$('.foto-centri').fancybox();				//foto centri sidebar
		$('.fotoprodotti a').fancybox();			//foto prodotti float
		$('a[title*="dalle Acque al Bambino"]').fancybox();
	}
	
	//IE6 only
	if ((jQuery.browser.msie) && (parseInt(jQuery.browser.version) < 7)) {
		$('head').append('<link rel="stylesheet" href="http://www.xiuzhendao.it/wordpress/wp-content/themes/garland-revisited/ie6.css" type="text/css" media="screen" />');
		
		$('script[src$=fancybox.js]').remove();
		$('link[href$=fancybox.css]').remove();
		
		/*$('head').append('<link rel="stylesheet" href="http://www.xiuzhendao.it/lightbox/lightbox.css" type="text/css" media="screen" />');
		$('head').append('<script type="text/javascript" src="http://www.xiuzhendao.it/lightbox/prototype.js"></script>');
		$('head').append('<script type="text/javascript" src="http://www.xiuzhendao.it/lightbox/scriptaculous.js?load=effects"></script>');
		$('head').append('<script type="text/javascript" src="http://www.xiuzhendao.it/lightbox/lightbox.js"></script>');
		
		$('.ngg-gallery-thumbnail a, .ngg-widget a, .foto-centri, .fotoprodotti, a[title*="dalle Acque al Bambino"]').attr('rel', 'lightbox');*/
		
		/*$(document).pngFix();*/
	
		$('#return_top').remove();
	
		$('.ngg-gallery-thumbnail a, .ngg-widget a, .foto-centri, .fotoprodotti a, a[title*="dalle Acque al Bambino"]').attr('target', '_blank');
	}
	
	    
    //link styles
    $('a[href^=mailto:]').addClass('email');
    $('a[href*=youtube.com]').addClass('yt');
    $('a[href*=facebook.com]').addClass('fb');
    $('a[href$=.pdf]').addClass('pdf');
    
    //margine sottosezioni
	$('.page-content h3:not(:first)').css('margin-top', '2em');
	
	/*$('.post img').wrap('<div class="post-image"></div>');
	$('.post-image').append('<span></span>');*/
	
	
	// foto centri sidebar
	$('.foto-centri img').css({
		border: '2px solid #000',
		margin: '.2em',
		padding: '2px'
	});
	$('.foto-centri').hover(
		function (){
			$(this).children('img').css('border', '2px solid #ff6363');
		},
		function (){
			$(this).children('img').css('border', '2px solid #000');
		}	
	);
	
	//glossa thimbnails
	$('.gloss a').hover(
		function (){
			$(this).children('span').remove();
			var w = $(this).children('img').attr('width') - 5;
			$(this).prepend('<span></span>');
			$(this).children('span').css('width', w + 'px').hide().show(200);
			$(this).children('img').css('border-color', '#ff6363');
		},
		function (){
			$(this).children('span').hide('normal');
			$(this).children('img').css('border-color', '#fff');
		}
	);
	
	//fix bug fancybox titolo vuoto
	$('.ngg-gallery-thumbnail a').each(function (i) {
		if ($(this).attr('title') == ' ') {
			$(this).attr('title', '');
			$(this).children('img').attr({
				title: '',
				alt: ''
			});
		}
	});
	
	// events calendar
	$('#wp-calendarLarge tr:odd').css("background-color", "#fffcb1");
	$('#wp-calendarLarge th:not(:last)').css("border-right", "1px solid #000");
	$('#wp-calendarLarge td').css("color", "#000");
	$('.event-block').parent('div').css("background-color", "#ff6969");
	
	$('.event-block').parent('div').parent('td').css("background-color", "#ff6969");
	$('.event-block').parent('div').siblings('.dayHead').css({
		backgroundColor: "red"
	}).prepend('&middot;&nbsp;').append('&nbsp;&middot;');
	
	$('#todayLarge:has(span)').css('background-image', 'none');
	$('#todayLarge div + div').css('background', 'url("http://www.xiuzhendao.it/wordpress/images/today_bg.gif")');
	
	
	// zebratura lista eventi widget
	//$('#events-calendar-list li:odd').css('background-color', '#fffcb1');
	
	//link pagina presentazione metodo
	if($('.page-title').text() != "il Metodo XiuZhenDao"){
		$('#multi-pages-1 ul').prepend('<li><a href="../">Presentazione</a></li>');
	}
	
	//zebratura tabella programma didattico
	$('table.programma tr:odd').css('background-color', '#333');
	
	//zebratura tabella calendario corsi professionali
	//$('table.calendario tr:odd').css('background-color', '#333');
	$('table.calendario td:empty').parent('tr').css('background-color', '#222');
	
	
	//link acquista prodotti Natur
	var item = $('.page-info h2').text();
	
	switch(item){
		case 'Natur Aller':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-aller');
		break;
		
		case 'Natur Depa':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-depa');
		break;
		
		case 'Natur Dim':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-dim');
		break;
		
		case 'Natur Diur':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-diur');
		break;
		
		case 'Eder':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-eder');
		break;
		
		case 'Natur Flog':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-flog');
		break;
		
		case 'Natur Immu':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-immu');
		break;
		
		case 'Natur Met':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-met');
		break;
		
		case 'Natur Sed':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-sed');
		break;
		
		case 'Nat-Urogen':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/nat-urogen');
		break;
		
		case 'Natur Vasc':
		$('#natur').attr('href', 'http://www.itesorideldrago.com/prodotti/natur-vasc');
		break;

	}
	
	
	// newsletter widget
	$('#email_news').click(function() {
		$(this).attr('value', '');
	});
	
	$("#submit_news").click(function() {
		
	var errorclass = {
		'background' : '#ff435b',
		'color' : '#000',
		'borderColor' : '#000'
	}
	
	var email_news = $("input#email_news").val();
	var ln = email_news.length;
	var atpos = email_news.indexOf("@");
	var dotpos = email_news.lastIndexOf(".");
	if ((atpos < 1)||((dotpos - atpos) < 2)||(dotpos == ln-1)) {
		$("input#email_news").css(errorclass).focus();
	    return false;
	}

	
	var dataString = 'email_news=' + email_news;  
	//alert (dataString); return false;
	$.ajax({  
		type: "POST",  
		url: "http://www.xiuzhendao.it/wordpress/newsletter.php",  
		data: dataString,  
		success: function() {
			$('#newsletter_form').html("<div id='message_news'></div>");  
			$('#message_news').html('<p>Grazie! Hai iscritto <span class="catched"></span> alla newsletter</p>').append('<img src="http://www.xiuzhendao.it/wordpress/images/logo_newsletter.jpg" style="border: 0;" width="40" height="40" />').hide();
			$('#message_news .catched').html(email_news);
			$('#message_news').fadeIn('slow');
		}  
	});  
	return false;  
	
	});
	
	
});
})(jQuery);
