$( document ).ready( function(){
	
	$('.blink')
		.focus( function(){
			if ( $( this ).val() == $( this ).attr('title') ) {
				 $( this ).attr({ 'value': '' });
				 $( this ).addClass('black');
			}
		})
		.blur( function(){
			if ( $( this ).val() == '' ) {
				$( this ).attr({ 'value': $( this ).attr('title') });
				$( this ).removeClass('black');
			}
		});
	
	
	$('.showcase')
		.hover( function(){
				if(!$(this).find('.showcaseimg').is(':hidden')){
					$('.showcasetxt').fadeOut(200);		 
					$(this).find('.showcasetxt').fadeIn(200);		 
				}
		});
	
	$('#showcases')
		.mouseleave( function(){
			$('.showcasetxt').fadeOut(200);		 
				
		});
		
	$('#buttons a')
		.click( function(){
			var curid = $(this).attr("id");
			$(".dropDownMenu").css("z-index","30");
			$('.dropDownMenu#'+curid).css("z-index","50");
			$(".dropDownMenu").fadeOut(200);
			if($('.dropDownMenu#'+curid).is(':hidden')){
				$('.dropDownMenu#'+curid).fadeIn(200);	
			}
				
		});
		
	$('a.calllink')
		.click( function(){
			$('form#callmeform').fadeIn(200);
		});
});
function closeMenu()
{
        $("div.dropDownMenu").fadeOut(200);
        $("#buttons a").removeClass("selected");
}


