$(document).ready(function() {

$('#techtips_content').hide();
$('#c3forum_content').hide();

	$(".navigation ul").superfish({ 
            animation: {height:'show'},
            delay:     1000 ,
            speed:     'fast',
            autoArrows:    false       
    });
    	
    	
    	
	$('.changing_background_bottom').cycle({ 
    fx:     'turnLeft', 
    speed:  1000, 
    timeout: 3000,
    pager:  '.glownav',
    	slideExpr: 'img'
	});
	
	
	$('.blink').blink(0); 
	

	$('input.searchbox_input').focus(function(){
 		 if(this.value=='Search')
 	 		{
 	 		this.value=''
			}
	});
	$('input.searchbox_input').blur(function(){
 		 if(this.value=='')
 	 		{
 	 		this.value='Search'
			}
	});
		

	$('#c3buzz').click(
	function(){
		$(this).addClass('active').fadeIn("slow");
		$('#techtips').removeClass('active');
		$('#c3forum').removeClass('active');
		$('#c3buzz_content').fadeIn("slow");
		$('#techtips_content').hide();
		$('#c3forum_content').hide();
	});
	$('#techtips').click(
	function(){
		$(this).addClass('active').fadeIn("slow");
		$('#c3buzz').removeClass('active');
		$('#c3forum').removeClass('active');
		$('#techtips_content').fadeIn("slow");
		$('#c3buzz_content').hide();
		$('#c3forum_content').hide();
	});
	$('#c3forum').click(
	function(){
		$(this).addClass('active').fadeIn("slow");
		$('#techtips').removeClass('active');
		$('#c3buzz').removeClass('active');
		$('#c3forum_content').fadeIn("slow");
		$('#techtips_content').hide();
		$('#c3buzz_content').hide();
	});
	
	
    $('ul.kwicks').kwicks({  
        max: 282,  
        spacing:  0,
        sticky: true  
    });
    
	
});
