/*
 *
 * This is the code that will override nyro Modal behaviour in the case of IE7
 * Created December 11, 2008 by Robin Ali
 *
*/



$(document).ready(function () {
  $(".nyroModal").click(function() {
	if($.browser.msie && parseInt($.browser.version.substr(0,1)) >= 7) {
		$($(this).attr('href')).toggle();	
	}
  });


  $(".closelink").click(function() {
        if($.browser.msie && parseInt($.browser.version.substr(0,1)) >= 7) {
                $($(this).attr('href')).toggle();
        }
  });


});



