// Calls for JQUERY functions



// Pre-Load CSS
	$(document).ready(function(){
		$.preloadCssImages();
		
		jQuery.fn.outer = function() { 
		  return $( $('<div></div>').html(this.clone()) ).html(); 
		} 
	
 });
 
$(document).ready(function() {
	
	$("a.group").fancybox({
		'hideOnContentClick': false,
		'overlayColor': "#000",
		'overlayOpacity': .8,
		'frameHeight': 590,
		'frameWidth': 600,
		'padding':0
	
	
	
	
	});
	
	

    $('.down-list').width($('.dropdown-menu').width()-2);

    $('.dropdown-menu').hover(
      function () {
        $('.menu-first', this).addClass('slide-down'); 
        $('.down-list', this).slideDown(100);
      }, 
      function () {
        obj = this;
        $('.down-list', this).slideUp(100, function(){ $('.menu-first', obj).removeClass('slide-down'); });
      }
    );


	
	
	
	

});
