jQuery.noConflict();
jQuery(document).ready(
	function() {
		if(jQuery('#bg-navi').length == 0)
			jQuery('.col-left').css({ 'height':'auto' });	
/*
			animate({ height:'0px' }, animationTime, 'swing', function() {
			jQuery(this).hide();
		});
*/
	}
);
function toggleOptions() {
	var animationTime = 300;
	if(jQuery('#options').css('display') == 'none') {
		jQuery('#options-head').css({ 'background-image':'url(/skin/frontend/default/current/images/on.png)' });
		jQuery('#options').animate({ height:'750px' }, animationTime, 'swing', function() {
		});
	} else {
		jQuery('#options').animate({ height:'0px' }, animationTime, 'swing', function() {
			jQuery(this).hide();
		});
		jQuery('#options-head').css({ 'background-image':'url(/skin/frontend/default/current/images/off.png)' });
	}
}
