/*!
 * Copyright 2011, Rafael Honório
 * http://www.rafaelhonorio.com.br
 */
 function social () {
	$(function () {
		$('#not #social-bar li')
		.mouseenter(function () {
			switch ( $(this).attr('class') ) {
				case 'tt':
					mLeft = '-420px';
				break;
				case 'fb':
					mLeft = '-300px';
				break;
				case 'or':
					mLeft = '-14820px';
				break;
				case 'dg':
					mLeft = '-180px';
				break;
				case 'dl':
					mLeft = '-120px';
				break;
				case 'gm':
					mLeft = '-3120px';
				break;
				case 'hm':
					mLeft = '-3180px';
				break;
				case 'bz':
					mLeft = '-15420px';
				break;
			}
			$(this).css({
				backgroundPosition: mLeft + ' 0px'
			})
		}).mouseleave(function () {
			$(this).css({
				backgroundPosition: mLeft + ' -31px'
			})
		})
	});
}
social();
$(function () {
	$('#main-content .left .slide, #right .pub .slide').nivoSlider({
		effect:'fade',
		directionNav:false,
		controlNav:false,
		pauseOnHover:false,
		captionOpacity:0
	});
	
	
	inputSearch = 'Pesquisar...';
	$('.search #text').val( inputSearch )
	.css({ color:'#888' })
	.focus(function () {
		if ( $(this).val() == inputSearch ) {
			$(this).css('color','').val('');
		}
	}).blur(function () {
		if ( $(this).val() == '' || $(this).val() == ' ' ) {
			$(this).css('color','#888').val( inputSearch );
		}
	});
	$('.search form').submit(function (event) {
		event.preventDefault();
		if ( $('#search #text').val() != '' && $('.search #text').val() != ' ' && $('.search #text').val() != inputSearch ) {
			location.href = 'http://www.emcamposdojordao.com.br/pesquisa/' + $('.search #text').val();
		} else {
			return false;
		}
	});
	
	inputMail = 'Digite seu e-mail.';
	$('#newsletter input[name=mail]').val( inputMail )
	.css({ color:'#888' })
	.focus(function () {
		if ( $(this).val() == inputMail ) {
			$(this).css('color','').val('');
		}
	}).blur(function () {
		if ( $(this).val() == '' || $(this).val() == ' ' ) {
			$(this).css('color','#888').val( inputMail );
		}
	});
	$('#newsletter input[name=send]').click(function () {
		$.post('/cadNewsletter', {mail: $('#newsletter input[name=mail]').val(), opt: $('#newsletter input[name=opt]:checked').val()}, function (resp) {
			alert( resp );
		});
	});
	
	$('ul.vtsmenu').fadeTo(0, 0).hide()
	$('.viall').mouseenter(function () {
		$('ul.vtsmenu').fadeTo(250, 1);
	}).mouseleave(function () {
		$('ul.vtsmenu').fadeTo(250, 0).hide();
	});
	
	$('form[name=enquete] input[name=Votar]').click(function () {
		$.post('/pVote', {opt: $('form[name=enquete] input[name=opt]:checked').val()}, function (resp) {
			alert( resp );
		});
	});
	
	$( '<div id="mask"></div>' ).css({
		width:$(document).width(),
		height:$(document).height(),
		opacity:0.8
	}).appendTo('body').hide();
	$('form[name=enquete] input[value=Resultado]').click(function () {
		$('#mask').fadeIn(500, function () {
			$.post('/presult', function (resp) {
				$( resp ).css({
					left: $(document).width() / 2 - 150,
					top: 150
				}).appendTo( 'body' );
				$('#close').click(function () {
					$('#mask, .enqueteR').fadeOut(500);
					$('.enqueteR').remove();
				});
			});
		});
	});
	
	$('#clima').css({textIndent:4,paddingTop:2}).append('<iframe src="http://selos.climatempo.com.br/selos/MostraSelo.php?CODCIDADE=420&SKIN=azul" scrolling="no" frameborder="0" width="150" height="170" marginheight="0" marginwidth="0"></iframe>');
	/* $('#fblike').append('<fb:like href="http://emcamposdojordao.com.br" send="false" layout="box_count" width="79" show_faces="false" font=""></fb:like>'); */
	/* $('#gplusone').append('<g:plusone size="tall" href="http://emcamposdojordao.com.br"></g:plusone><script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script>');*/
});
