



	

$.noConflict();
  jQuery(document).ready(function($) {
        $(document).pngFix(); 


		$('.menu li ').hover(
			
			function() 
			{ 
			$('ul', this).css('display', 'block'); 
			},
			function() 
			{ 
			$('ul', this).css('display', 'none'); 
			});
		
		
		$('.holder').css('height', $(document).height());
		$('.smallbar').css('height', $(document).height() - 217);
		$('.sidebar').css('height', $(document).height());

		
		$(window).resize(function() {
		$('.holder').css('height', $(document).height());
  		$('.smallbar').css('height', $(document).height() - 217);
		$('.sidebar').css('height', $(document).height());
		});


});

		
		
		
 
