/*
	Fwasl.com 2011 Theme -- Script
	Script By Salah Elimam
	http://http://www.salahelimam.com
	Wordpress Theme Designed and Developed by Salah Elimam 
*/

	$(function () {
		/************************** Fwasl.com Theme By Salah Elimam ************************************/
		$('#open-top-head').click(function () {
			if ($('#top-head').hasClass('closed'))
			{
				$('#top-head').animate(
				{
					'height':'+=110'
				},1000);
				$('#open-top-head').animate(
				{
					'margin-top':'+=0'
				},1000,function () 
				{
					$(this).html('<div id="close-top-head" class="ui-corner-bottom"></div>');
				});
				$('#top-head').removeClass('closed');
				$('#top-head').addClass('opened');				
			}else if ($('#top-head').hasClass('opened')){
				$('#top-head').animate(
				{
					'height':'-=110'
				},1000);
				$('#open-top-head').animate(
				{
					'margin-top':'-=0'
				},5000,function () 
				{
					$(this).html('');
				});
				$('#top-head').removeClass('opened');
				$('#top-head').addClass('closed');	
			}
		});

		$('#search').blur(function ()
		{
			$(this).animate(
			{
				'width':'-=50'
			},500);
		}); 
		$('#search').focus(function () 
		{
			$(this).animate(
			{
				'width':'+=50'
			},500);
		});
		
	});
/*
	Fwasl.com 2011 Theme -- Script
	Script By Salah Elimam
	http://http://www.salahelimam.com
	Wordpress Theme Designed and Developed by Salah Elimam 
*/

