$(document).ready(function() {
    
	$('.home_main').cycle({ 
		fx:     'scrollHorz', 
		speed:  'slow', 
		timeout: 0, 
		next:   'a.jobsearch', 
		prev:   'a.jobsearch_back' ,
		cleartypeNoBg: true
	});
	
	$('.logoscroller').cycle({ 
		fx:     'fade', 
		speed:  'slow', 
		timeout: 3000
	});
	
	$('.clientscroller').cycle({ 
		fx:     'fade', 
		speed:  3000, 
		timeout: 5000,
		pause:   1	
	});
	
	$('.candidatescroller').cycle({ 
		fx:     'fade', 
		speed:  3000, 
		timeout: 5000,
		pause:   1	
	});
	
	$('.jobrotate').cycle({ 
		fx:     'scrollUp', 
		speed:  4500, 
		timeout: 7,
		pause:   1	
	});
	
	$('.jobrotate2').cycle({ 
		fx:     'scrollUp', 
		speed:  4500, 
		timeout: 7,
		pause:   1	
	});	
 
});




$(function () {
	var tabContainers = $('div.jobsbox > div');
	tabContainers.hide().filter(':first').show();
	
	$('div.jobsbox ul.tabNavigation a').click(function () {
		tabContainers.hide();
		tabContainers.filter(this.hash).show();
		$('div.jobsbox ul.tabNavigation a').removeClass('selected');
		$(this).addClass('selected');
		return false;
	}).filter(':first').click();
});




$(document).ready(function() {


	$("div.searchpanel").hide(); 
	
		$("a.viewsearch").click(function () {
			$("div.searchpanel").slideToggle('1000', function() {
			// Animation complete.
		  });
	});
		
		
		
	$("div.aboutpanel").hide(); 
	
		$("a.aboutus").click(function () {
			$("div.aboutpanel").slideToggle('1000', function() {
			// Animation complete.
		  });
	});

});



function showvalue(arg) {
    alert(arg);
}  
