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

	// sliding background
	
	jQuery('#bg_slides').cycle('fade');
	
	// Auto resize window
	
	var windowHeight = function(){
		//var h 		= $(window).height() - $('#bottom').height();		
		var imgH 	= $('#bg_slides img, #bg_inner img').height();
		

	}
	
	var windowWidth = function(){
		var w = $(window).width();
		jQuery('#bg_slides img, #bg_inner img').width(w);
	}
	
	
	jQuery(window).resize(function(){
		windowHeight();
		windowWidth();
		windowLogo();
	}).load(function(){
		windowHeight();
		windowWidth();
	});
	
	//jQuery('.hscroll').jScrollPane();
	
});


