$j=jQuery.noConflict();
		$j(document).ready(function($) {
			if ($('#servicelist').length > 0) {
				var kwicksWidth = 188;
				$(".services")
					.children("li:last-child").addClass("lastSlide").end()
					.children("li:first-child").addClass("firstSlide").end()
					.children("li").css('width',kwicksWidth+'px')
					.each( function() {
						$j(this).children('.coverUp').css('width',kwicksWidth+'px');
						$j(this).children('.slideLink').css({
							'opacity': 0,
							'display': 'block' 
						});
						$j(this).hover( 
							function() {
									$j(this)
									.children('.coverUp').animate({ left: '-188px'}, 710, 'easeOutCubic').end()
									.children('.slideLink').delay(250).animate({ opacity: 0.8 }, 500, 'easeOutCubic');
							},
							function() {
								$j(this)
									.children('.coverUp').stop(true,true).animate({ left: '0' }, 710, 'easeOutCubic').end()
									.children('.slideLink').stop(true,true).animate({ opacity: 0 }, 300, 'easeOutCubic');;
						});
					});
				$('.services').kwicks({
					 max : 420,  
					 spacing : 5,
					 duration: 350,
					 defaultKwick: 0,
					 sticky: true
				});				
			}
			$('.cycle').cycle({
				fx: 'fade',
				timeout: 6000,
				cleartype: 1,
				slideExpr: 'div'
			});
            $('#contact').cycle({
				fx: 'fade',
				timeout: 6000,
				cleartype: 1,
				slideExpr: 'div'
			});
		});
