		<!-- kwicks -->
$j = jQuery.noConflict(); 
		    // initialize slideshow
		    $j(document).ready(function($) {
		        if ($('#Slides').length > 0) {
		            var kwicksWidth = Math.floor(938 / $('#Slides').children().length);
		            $(".kwicks")
						.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('.slideInfo').css({
						        'opacity': 0,
						        'display': 'block'
						    });
							$j(this).children('.slideInfo2').css({
						        'opacity': 0,
						        'display': 'block'
						    });

						    $j(this).hoverIntent(
							function() {
							    //							    if ($('#kwick_1')) {
							    //							        $j(this)
							    //							        .children('.coverUp').stop(true, true).animate({ left: '0' }, 710, 'easeOutCubic').end();
							    //							    }
							    //							    else {
							    $j('#kwick_1')
						            .children('.coverUp').stop(true, true).animate({ left: '0' }, 710, 'easeOutCubic').end()
							        .children('.slideInfo').stop(true, true).animate({ opacity: 0 }, 300, 'easeOutCubic');
							    $j('#kwick_2')
						            .children('.coverUp').stop(true, true).animate({ left: '0' }, 710, 'easeOutCubic').end()
							        .children('.slideInfo2').stop(true, true).animate({ opacity: 0 }, 300, 'easeOutCubic');
							    $j('#kwick_3')
						            .children('.coverUp').stop(true, true).animate({ left: '0' }, 710, 'easeOutCubic').end()
							        .children('.slideInfo').stop(true, true).animate({ opacity: 0 }, 300, 'easeOutCubic');
							    $j('#kwick_4')
						            .children('.coverUp').stop(true, true).animate({ left: '0' }, 710, 'easeOutCubic').end()
							        .children('.slideInfo2').stop(true, true).animate({ opacity: 0 }, 300, 'easeOutCubic');
							    $j('#kwick_5')
						            .children('.coverUp').stop(true, true).animate({ left: '0' }, 710, 'easeOutCubic').end()
							        .children('.slideInfo').stop(true, true).animate({ opacity: 0 }, 300, 'easeOutCubic');
							    $j(this)
									.children('.coverUp').animate({ left: '-' + kwicksWidth + 'px' }, 710, 'easeOutCubic').end()
									.children('.slideInfo').delay(250).animate({ opacity: 0.8 }, 500, 'easeOutCubic');
								$j(this)
									.children('.coverUp').animate({ left: '-' + kwicksWidth + 'px' }, 710, 'easeOutCubic').end()
									.children('.slideInfo2').delay(250).animate({ opacity: 0.8 }, 500, 'easeOutCubic');
							    //							    }
							},
							function() {
							    $j(this)
									.children('.coverUp').stop(true, true).animate({ left: '-' + kwicksWidth + 'px' }, 710, 'easeOutCubic').end()
									.children('.slideInfo').stop(true, true).animate({ opacity: 0.8 }, 300, 'easeOutCubic');
								$j(this)
									.children('.coverUp').stop(true, true).animate({ left: '-' + kwicksWidth + 'px' }, 710, 'easeOutCubic').end()
									.children('.slideInfo2').stop(true, true).animate({ opacity: 0.8 }, 300, 'easeOutCubic');
							});
						}
						);
		            $('#kwick_1')
								.children('.coverUp').animate({ left: '-' + kwicksWidth + 'px' }, 710, 'easeOutCubic').end()
								.children('.slideInfo').delay(250).animate({ opacity: 0.8 }, 500, 'easeOutCubic');

		            //$('.kwicks li').css('width',Math.floor(934/$('#Slides').children().length)+'px');
		            $('#Slides').kwicks({
		                min: 49,
		                duration: 710,
		                easing: 'easeOutCubic',
		                spacing: 1,
		                defaultKwick: 0,
		                sticky: true
		            });
		        }
		    });
