jQuery.noConflict();

jQuery(document).ready(function(){
            jQuery("#1").lavaLamp({
                fx: "backout",
                speed: 700,

            });
        });





jQuery(document).ready(function(){
    jQuery('.slideshow').cycle({
    fx:     'fade', 
    speed:   700, 
    timeout: 6000 
    });
});


jQuery(document).ready(function(){
	jQuery('#tabvanilla > ul').tabs({ fx: { height: 'toggle', opacity: 'toggle' } });
	jQuery('#featuredvid > ul').tabs();
});

jQuery(document).ready( function($) {
  $('#rowtoggler').click(function() {
     $('.'+$(this).attr('id')).each(function(i, elem) {
	$(elem).toggle($(elem).css('display') == 'none');
     });
     return false;
  });
}); 

jQuery(document).ready( function($) {
	
	$(".toggle_container").hide();

	$("h2.trigger").toggle(function(){
		$(this).addClass("active"); 
		}, function () {
		$(this).removeClass("active");
	});
	
	$("h2.trigger").click(function(){
		$(this).next(".toggle_container").slideToggle("slow,");
	});

});
