/*
	Any site-specific scripts you might have.
	Note that <html> innately gets a class of "no-js".
	This is to allow you to react to non-JS users.
	Recommend removing that and adding "js" as one of the first things your script does.
	Note that if you are using Modernizr, it already does this for you. :-)
*/
/* 

*/
$(document).ready(function() {

// Activate the jQuery Superfish menu
	$('#mainNav ul').superfish({
			delay: 			100,
			autoArrows:  	false,
            dropShadows: 	false,
			speed:			'fast'
	});

	// Activate the home carousels for Main Message and Logos (Client)
	$('body.home #messageReeler').carouFredSel({
			scroll : {
				duration		: 1000,
				fx				: "crossfade"
			},
			auto : {
				pauseDuration	: 5000
			}
	});
	
	// Catch-all for Anchors with lightbox rel

	$("a[rel^='lightbox']").slimbox({/* Put custom options here */}, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	});

});
