jQuery(document).ready(
		function(){
			// Slideshow Function
			jQuery('#slideShow').innerfade({
				animationtype: 'fade',
				speed: 1200,
				timeout: 4000,
				type: 'random',
				containerheight: '307px'
			});
		}
);
// End of Slideshow function

jQuery(document).ready(
		function(){
			// Slideshow Function
			jQuery('#rotateCalltoAction').innerfade({
				animationtype: 'fade',
				speed: 1200,
				timeout: 6000,
				type: 'random',
				containerheight: '50px'
			});
		}
);

// Blinking text
jQuery(document).ready(function() {
	jQuery('.careers a').each(function() {
	    var elem = jQuery(this);
	    setInterval(function() {
	        if (elem.css('visibility') == 'hidden') {
	            elem.css('visibility', 'visible');
	        } else {
	            elem.css('visibility', 'hidden');
	        }    
	    }, 800);
	});
});
