// remap jQuery to $
(function($){

	// Tipsy
	$('.jq-tipsy').tipsy({gravity: 's', fade: true, delayIn: 500, delayOut: 1000}); // nw | n | ne | w | e | sw | s | se
	
	// Fancybox
	$("a[rel=gal]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
	});
	
})(window.jQuery);

// Menu Dropdown
var site = function() {
	this.navLi = $('nav li').children('ul').hide().end();
	this.init();
};
site.prototype = {
 	init : function() {
 		this.setMenu();
 	},
 	setMenu : function() {
 	$.each(this.navLi, function() {
 		if ( $(this).children('ul')[0] ) {
 			$(this).append('<span class="hasChildren" />');
 		}
 	});
 		this.navLi.hover(function() {
			$(this).find('> ul').stop(true, true).slideDown('slow');
 		}, function() {
 			$(this).find('> ul').stop(true, true).hide(); 		
		});
 	}
}
new site();

