// <![CDATA[
$(function() {
		   
// -------------------------- //
// -- -- Generic jQuery -- -- //
// -------------------------- //

	//Opens Links In External Window
	$("a[rel='external']").addClass("external").attr('title', function() { return this.title + ' (Opens in New Window)' }).click(function() { window.open(this.href); return false; });
	
	//Scroll To Back to Top
	$("a[href='#backtotop']").click(function() { $.scrollTo(0, 500); return false; }); 

	//Start Fancybox General
	$("a.fancyBox").fancybox({
		'hideOnContentClick': false,
		'overlayShow': true
	});
	
	//Draggable Content Areas
	$(".draggable").draggable({ revert: true, revertDuration: 1000, refreshPositions: true, zIndex: 1000 });
	$(".scrollButtons").draggable('disable');
	$(".gallery").draggable('disable');
	
	//Active Supersize
	$('#supersize').supersized(); 
	
	$(".quoteContainer").mouseover(
		function() {
			$("a.closeQuote").css("visibility", "visible");		
		}
	);
	
	$(".quoteContainer").mouseout(
		function() {
			$("a.closeQuote").css("visibility", "hidden");		
		}
	);
	
	$("a.closeQuote").click(
		function(){
			$(this).parent(".quoteContainer").fadeOut(500);
		}
	);

// -------------------------- //
// -- -- Menu jQuery -- -- //
// -------------------------- //

});
// ]]>