 $jq(document).ready(function()
 {
 	//Get Overlay-Container
 	var $twoPicSliderContainer = $jq('#twoPicSlider');
	//Get first Image
	var $firstPic = $jq('#twoPicSlider img:first-child');
	//Get last Image, ignore others may contained
	var $secondPic = $jq('#twoPicSlider img:last-child');
	//Set init Attributes for overlay
	$secondPic.css('left', $twoPicSliderContainer.width());

	//Add mouseover-function to view overlay
    $twoPicSliderContainer.mouseenter(
		function(event)
		{
			
			$firstPic.animate
			(
				{left:-$twoPicSliderContainer.width()},
				'slow'
				//Add easing function here
			)
			
			$secondPic.animate
			(
				{left:"0px"},
				'slow'
				//Add easing function here
			)

		}
	)
	
	//Add mouseout-function to hide overlay
	$twoPicSliderContainer.mouseleave(
		function(event)
		{
			$firstPic.animate
			(
				{left:"0px"},
				'slow'
				//Add easing function here
			)
			
			$secondPic.animate
			(
				{left:$twoPicSliderContainer.width()},
				'slow'
				//Add easing function here
			)
		}
	)
 });
 





