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

jQuery("#lime-strip .sub").hide(0);
	
jQuery("#open-limeStrip").click(function(){
	jQuery(".panel").animate({
		height: '127px'
	});
	jQuery("#toggle-limeStrip").animate({
		top: '44%'
	});
	jQuery("#lime-strip .logo").animate({
		top: '40%'
	});
	jQuery("#lime-strip .sub").fadeIn('2000');
	jQuery("#lime-strip .main").hide(0);
});
	
jQuery("#close-limeStrip").click(function(){
	jQuery(".panel").animate({
  		height: '32px'
	});
	jQuery("#toggle-limeStrip").animate({
		top: '29%'
	});
	jQuery("#lime-strip .logo").animate({
		top: '17%'
	});
	jQuery("#lime-strip .sub").hide(0);
	jQuery("#lime-strip .main").fadeIn('1000');
});		
	
jQuery("#toggle-limeStrip a").click(function () {
	jQuery("#toggle-limeStrip a").toggle();
});		
		
});


function showSub()
{
/* nahrazeno jquery  */
}
function hideSub()
{
/* nahrazeno jquery  */
}
