/* INPUT FIELD TEXT SHOW HIDE FUNCTION */

function clrtxt(theText)
{
     if (theText.value == theText.defaultValue)
 	{
         theText.value = ""
     }
 }

function showtxt(theText)
{
	if (theText.value =="")
 	{
         theText.value =theText.defaultValue;
     }
}

/* Marquee hide and show setting */
$(function(){
	$(".posPart a").addClass("active");
	$(".posPart a").click(function(){
		$(".marquee_banner").slideToggle("slow");
		$("#animation").slideToggle("slow");
		$(".innerbanner").slideToggle("slow");
		//$(".banner").animate({height:heightnew}, 500);
		//$(".banner").animate({ opacity: 'hide' }, "slow");
		//$("#container").animate( {position: 'absolute', zIndex: 5000,top: top } );
		//$("#container").css({ 'top': '-100px'});
		$(this).toggleClass("activeup");
		$(this).siblings("a").removeClass("activeup");
	});
});


/*
$(function() {
	$(".posPart a").toggle(function(){
			$("#container").animate({height:heightnew}, 500);
		},
		function(){
			$("#container").animate({height:heightold}, 500);
		}
	);
});

*/
