jQuery.noConflict();
jQuery(document).ready(function(){
	var browserId;
	browserId = navigator.appName;
	if(browserId != "Opera"){
		jQuery.smoothAnchors("slow");
	}
	
	var pageId;
	jQuery("#page_1, #page_2, #page_3, #page_4, #page_5").mouseover(function(){
		pageId = jQuery(this).attr('id');
	});
	
	
	jQuery('.list_style_left a, .general_content a, .footer_content a, .sect_button a, .bakalavr a').live('click', function() {
		if (jQuery(this).attr('target') != "thePicture" && jQuery(this).attr('class') != "download" && jQuery(this).attr('target') != "_blank" && jQuery(this).attr('target') != "FEopenLink"){
			jQuery('.list_style_left a, .general_content a, .footer_content a, .site_name a').removeClass("act");
			jQuery(this).addClass("act");
			// jQuery("#"+pageId+" .general_content").html('<img src="fileadmin/template/dstu.ru/fiu/img/ajax_activity.gif" alt="Подождите..." />');
			href = jQuery(this).attr('href');
			
			jQuery.ajax({
				type: "GET",
				url: href,
				success: function(html){
					document.location.href="#"+pageId;
					jQuery("#"+pageId+" .general_content").html(html);
				}
			});
			return false;
		}
		
	});
})
