$(document).ready(function() {
	$("a.lightbox").fancybox();
});
/* begin - Primary Navigation */
var primaryNavigation = {
  init: function() {
    if ($.browser.msie) // iframe to fix dropdowns over select items
        $('#primary-nav > li').append('<iframe style="display: none;" src="javascript:false;" frameBorder="0" scrolling="no"></iframe>');
		
    $('#primary-nav > li').hover(
      function() {
        $(this).addClass('over');
        $(this).children('a').addClass('over');
  	    if ($.browser.msie) {
  				var h = $(this).children('ul').height();
  				var w = $(this).children('ul').width() + 1;
  				var i = $(this).children('iframe');
  				if (i.length > 0 && h != null && w != null)
  				  i.height(h).width(w).show();
		    }
      },
      function() {
        $(this).removeClass('over');
        $(this).children('a').removeClass('over');
        if ($.browser.msie)
          $(this).children('iframe').hide();
      }
    );
  }
};
$(function() { primaryNavigation.init(); });
/* end - Primary Navigation */

