/*
 *Grupo Oficina 36 - www.oficina36.com.br
 *Site  jQuery Effects
*/

$(document).ready(function(){
	
	/*Link Hover*/
	$(".link").hover(function () {
        $(this).stop().animate({
			color: '#fff',
			backgroundColor: '#888',
			paddingLeft: '35px',
			width: '365px'
        }, {
            duration: 400
        });
    }, function () {
        $(this).stop().animate({
			color: '#000',
          	backgroundColor: '#fff',
			paddingLeft: '15px',
			width: '385px'
        }, {
            duration: 400
        });
    });
	
	/*Submit Hover*/
	$(".enviar").hover(function () {
        $(this).stop().animate({
			color: '#fff',
			backgroundColor: '#888',
			paddingLeft: '25px',
			width: '95px'
        }, {
            duration: 400
        });
    }, function () {
        $(this).stop().animate({
			color: '#000',
          	backgroundColor: '#fff',
			paddingLeft: '15px',
			width: '85px'
        }, {
            duration: 400
        });
    });
	
	/*Submit*/
	$("#enviando").click(function () {
        $(this).css("display","none");
	});
	
	/*SelectBox Formulario*/
	$("[name=selectArea]").sb({ ddCtx: "#formulario" });
	
});

