$(document).ready(function()
{        
    $("#txtname").focus(function(event)
    {
        if($(this).attr('value') == 'Enter your name')
        {
            $(this).attr('value', "");
            $(this).removeClass('grayfont');
        }
    });
    $("#txtemail").focus(function(event)
    {
        if($(this).attr('value') == 'Enter your email id')
        {
            $(this).attr('value', "");
            $(this).removeClass('grayfont');
        }
    });
    $("#txtname").blur(function(event)
    {
        if($(this).attr('value') == "")
        {
            $(this).attr('value', "Enter your name");                    
            $(this).addClass('grayfont');                         
        }
    });
    $("#txtemail").blur(function(event)
    {
        if($(this).attr('value') == "")
        {
            $(this).attr('value', "Enter your email id");                    
            $(this).addClass('grayfont');                         
        }
    });
    
    
    
    /*  ---------------- for testimonial ------------ */
    $('#testimonials .slide');
    setInterval(function(){
        $('#testimonials .slide').filter(':visible').fadeOut(1000,function(){
            if($(this).next('li.slide').size()){
                $(this).next().fadeIn(1000);
            }
            else{
                $('#testimonials .slide').eq(0).fadeIn(1000);
            }
        });
    },8000);            
	
	// for main banner
	 $('#sildercontent').suSlider(
         {
             
             //mode: 'slide',
             mode: 'fade',   
             speed: 1500,
             select:12000,
             auto:true,
             wrapper_class: 'portfolio_container'
         }); 
	
	
});


