// JavaScript Document
//  $(document).ready(function(){
//   setTimeout(function(){
//  $("div.carga").fadeOut("fast", function () {
//  $("div.carga").remove();
//      });
//
//}, 3000);
// });
$(document).ready(function(){
	//paneles slide						   
    $('.boxgrid.slideright').hover(function(){  
        $(".cover", this).stop().animate({left:'325px'},{queue:false,duration:500});  
    }, function() {  
        $(".cover", this).stop().animate({left:'0px'},{queue:false,duration:500});  
    });
	
	//slideabajo
    jQuery('#mycarousel').jcarousel({
        // Configuration goes here
    });

	//slidetags
    jQuery('#tagcarousel').jcarousel({
        // Configuration goes here
    });
	//roudabaout
	$('div.moveMe').roundabout({
	minScale: 0.1,
	easing: 'swing',
	childSelector: 'div.moveable',
	});
	//roudabaout
	$('div.move2').roundabout({
	minScale: 0.1,
	easing: 'swing',
	childSelector: 'img.moveable',
	});
});

//Tabs
$(function() {
$('#container-1').tabs({ fxFade: true});
});


//ovslider
function ovslider( tag ){
	if ( $("#" + tag).css( "display" ) == "block" ){
		$("#" + tag).fadeOut();
	}else{
		$(".removertodo").fadeOut();
		$(".wpcf7-not-valid-tip").css("display", "none");	
		$("#" + tag).fadeIn();
	}
}



