// JavaScript jQuery Acciones 
                         
jQuery.noConflict();
jQuery(document).ready(function() {

jQuery("#content_home").addClass('jas');

jQuery(".none").hide(); 


jQuery('#bg-animated').append('<div id="parallax"><div class="uno"></div><div class="dos"></div><div class="tres"></div><div class="cuatro"></div></div>');

jQuery('#parallax').jparallax();


jQuery("a.inline").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'fade',
				'transitionOut'	: 'fade',
				'overlayShow': false
			});

//Twitter shits
jQuery(".tweet").tweet({
          join_text: "auto",
          username: "diegochavez",
          avatar_size: 48,
          count: 4,
          auto_join_text_default: "Yo he dicho,", 
          auto_join_text_ed: "we",
          auto_join_text_ing: "we were",
          auto_join_text_reply: "we replied",
          auto_join_text_url: "we were checking out",
          loading_text: "Buscando Tweets.."
        });

jQuery("#Contactar").validate();

// Form ajax xD
jQuery("a.lop").fancybox({
	'scrolling'		: 'no',
	'titleShow'		: false,
	'overlayShow': false,
	'onClosed'		: function() {
	    jQuery("#error").hide();
	}
});

jQuery("#Contactar").bind("submit", function() {

	if (jQuery("#Name").val().length < 1 || 
		jQuery("#Email").val().length < 1 ||  
		jQuery("#Message").val().length < 1 )
	{
	    jQuery("#error").show();
	    jQuery.fancybox.resize();
	    return false;
	}

	jQuery.fancybox.showActivity();

	jQuery.ajax({
		type		: "POST",
		cache	: false,
		url		: "http://www.dhype.com/wp-content/themes/assets/send_contact.php",
		data		: jQuery(this).serializeArray(),
		success: function(data) {
			jQuery.fancybox(data,{'overlayShow': false});
		}
	});

	return false;
});


});

