// <![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, 1500); return false; }); 

	//Start Fancybox General
	$("a.fancyBox").fancybox({
		'hideOnContentClick': false,
		'overlayShow': true
	});
	
	//Start FancySupport General
	$("a.fancySupport").fancybox({
		'hideOnContentClick': false,
		'overlayShow': true,
		'frameWidth': 800,
		'frameHeight': 460
	});
	
	$('label.overlay').labelOver();
	
	

});
// ]]>
