function swip (elementInput, swipFrom, swipTo)
{
if (elementInput.value == swipFrom) elementInput.value = swipTo;
}

$(document).ready(function() 
{
	$('#general_nav li').mouseover(function()
	{
		$(this).find('.subul').css('width',$(this).width()+'px');
	})
	
	$('#general_nav li a.lvl1').each(function (i, elem) {
		
		var min = '80px';

		if($(this).width() < 80 )
		{
			$(this).css('width','80px');
		}
	})
	
	$('#order_id').click(function(){$(this).val('')})
	
	$('#tickets form').submit(function(){
		

		var ticket_id = $('#order_id').val();
		$.fn.colorbox({
				innerWidth: '960px',
				innerHeight: '600px',
				href: 'http://portal.hurican.cz/orderstatus/'+ticket_id,
				iframe:true,
				opacity: 0.5,
				open:true
			});
		
		
		return false;

		
	})
});

