jQuery(document).ready(function() {
	jQuery('.first-and-second-carousel').jcarousel();
	jQuery('#third-carousel').jcarousel({
        vertical: true,
        auto: 3,
        wrap: 'last'
    });
		jQuery("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);
        jQuery(function() {
            jQuery("#tabs_contenido").organicTabs({
                "speed": 200
            });
        });

		jQuery("a[rel^='prettyPhoto']").prettyPhoto({
		    allow_resize: true,
			overlay_gallery: false,
			keyboard_shortcuts: true,
			});



jQuery(document).ready(function() {
		jQuery('input[type=text]').each( function(i) {
			var t = jQuery(this);
			var thisval = t.val();
			t.blur( function() {
				if (t.val() == '') t.val(thisval);
			}); // end blur function
			t.focus( function() {
				if (t.val() == thisval) t.val('');
			});// end focus function
		}); //END each function
	}); // END document ready function

// developed by
jQuery(".development a").css({ opacity: 0.5 });
jQuery(".development a").hover(
function() {
jQuery(this).stop().animate({"opacity": "1"}, 200);
},
function() {
jQuery(this).stop().animate({"opacity": "0.5"}, 200);
});


});
