// JavaScript Document

	//no conflict jquery
	jQuery.noConflict();
	//jquery stuff
	(function($) {	
		
		//set location slide down and up when click
		//set Hover for Other Location Map
//		$('#networkmap').hover(
//			function() {
//				origImage = $(this).attr("src"); 
//				$(this).attr("src", "source/networkmapwBAR1over.png");
//			},
//			function() {
//				$(this).attr("src", origImage);
//			}).toggle(
//			function() {
//				$('#locationmenulayer').slideDown("slow");
//			},
//			function() {
//				$('#locationmenulayer').slideUp("slow");//css('display', 'none');
//			}
//		);
		
		$('#viewby7').hover(
			function() {
				origImage1 = $(this).attr("src"); 
				$(this).attr("src", "source/nav-viewby/studiotagover3.gif");
			},
			function() {
				$(this).attr("src", origImage1);
			}).click(function(){
				return true;
			});
		
	})(jQuery);
