		        var is_chrome = navigator.userAgent.toLowerCase().indexOf('chrome') > -1;
		        var is_safari = navigator.userAgent.toLowerCase().indexOf('safari') > -1;
                if(!is_chrome && !is_safari) { 			    
				        $(document).ready(function() {
					        var arrHeight = new Array(); 
					        $("div.group").each(function(i) { 
						        var nHeight = $(this).height(); 
						        arrHeight[i] = nHeight; 
					        }); 
					        // adds class name on navigation links
					        $(".nav-sub").find('a').each(function(i) { 
						        if (i === 0) {
							        $(this).addClass('group');
						        } else {
							        $(this).addClass('g'+i);
						        }
					        }); 
    					    
					        // adds a click event on each anchor whith in nav - excluding group that is the link for all
					    $('.nav-sub a').not('.group').click(function() {
						    var arr = this.className.split(' ');
						    // check if group is active
						    if (arr[arr.length-1] !== 'active') {
							    var sClass = 'div.' + this.className;	
							    // remove active from all, add acrtive to current
							    $('.nav-sub a').removeClass('active');
							    $(this).addClass('active');
							    // fade out, then set display none to remove whitespace, on every group, except the one we're gonna show 
							    $('div.group').not(sClass).fadeTo(400, 0, function() {
									    $(this).css('display', 'none');
								    });						
							    // fade out the one we're gonna show, keep whitespace and then fade in 
							    $(sClass).fadeTo(400, 0, function() {
									    $(this).css('display', 'block').fadeTo(400, 1);	
								    });
						    }
						    return false;
					    });

					    $('a.group').click(function() {
						    var arr = this.className.split(' ');
						    // check if group is active
						    if (arr[arr.length-1] !== 'active') {
							    // remove active from all, add acrtive to current
							    $('.nav-sub a').removeClass('active');
							    $(this).addClass('active');
							    // fade out all groups, then fade in again
							    $('div.group').fadeTo(400, 0, function() {
									    $(this).css('display', 'block').fadeTo(400, 1);
								    });					
						    }
						    return false;
					    });						    
			
        					
					        $('select[name=ctl00$MainRegion$MiddleContentRegion$ddlFilterOptions]').change(function() {
						        var tmp = $(this).val();
						        if (tmp == "all") {
						            $('div.group').find('dl').fadeTo(500, 1);
						        }
						        else {
						            $('div.group').find('dl').not('.'+tmp).fadeTo(500, .2);
						            $('div.group').find('.'+tmp).stop();
						            $('div.group').find('.'+tmp).fadeTo(500, 1);
						        }
					        });					
				        });
				    }
