	$(document).ready(function() {

// FANCYBOX =================================
	$("a.jq_fancy").fancybox({
		'titleShow'     : false
	});

	$("a.jq_fancy_gal").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});

	$("a.jq_fancy_gal_text").fancybox({
		'titleShow'     : true,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic',
		'titlePosition' 		: 'inside'
	});

	$("a.jq_fancy_zoom").fancybox({
		'titleShow'     : false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none'
	});

	$(".jq_fancy_ajax").fancybox({

	});

	$("a.jq_fancy_inline").fancybox({
		'titleShow'     : false,
		'width'		:	800,
		'height'		:	500
	});

	$(".jq_fancy_iframe").fancybox({
		'width'				: '75%',
		'height'			: '75%',
		'autoScale'     	: false,
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'type'				: 'iframe'
	});


/* SHOW HIDE PODS */
	$("div.jq_showhide_element_1").hide(); 
	$("div.jq_showhide_element_2").hide();
	$("div.jq_showhide_element_3").hide(); 
	$("div.jq_showhide_element_4").hide(); 
	$("div.jq_showhide_element_5").hide();
	$("div.jq_showhide_element_6").hide(); 
    $(".jq_showhide_1").click(function () {
      $("div.jq_showhide_element_1").toggle("slow");
    });
	 $(".jq_showhide_2").click(function () {
      $("div.jq_showhide_element_2").toggle("slow");
    });
	 $(".jq_showhide_3").click(function () {
      $("div.jq_showhide_element_3").toggle("slow");
    });
	 $(".jq_showhide_4").click(function () {
      $("div.jq_showhide_element_4").toggle("slow");
    });
	 $(".jq_showhide_5").click(function () {
      $("div.jq_showhide_element_5").toggle("slow");
    });
	 $(".jq_showhide_6").click(function () {
      $("div.jq_showhide_element_6").toggle("slow");
    });


 $('.slideshow').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		 speed: '2000',
		random: 'true'
	});

// =================================
	}); // END OF document ready

