var $j = jQuery.noConflict();

		$j(document).ready(function() {
			$j('#slideshow').cycle('fade');

			$j('#eventsblock_inner').jScrollPane();



			//$j('#bookmarks').hover(function() {
            //
			//		$j(this).css('display', 'block');
            //
			//	}, function() {
            //
			//		setTimeout(function(){
            //
			//			$j('#bookmarks').css('display', 'none');
            //
			//			}, 500);
            //
			//	});
            //
            //
            //
			//$j('#bookmark').click(function(){
            //
			//		$j('#bookmarks').css('display', 'block');
            //
			//	});
            //
            //
            //
			//$j('#bookmark').hover(function() {
            //
			//		$j(this).css('opacity', '0.75');
            //
			//	}, function() {
            //
			//		$j(this).css('opacity', '1');
            //
			//	});
            //



			$j('#bookmarks img').hover(function() {

					$j(this).css('opacity', '0.75');

				}, function() {

					$j(this).css('opacity', '1');

				});
			


			$j('#newsletter input.text').css('color', '#ccc');

			$j('#newsletter input.text').focus(function() {
				$j(this).attr('value', '');
				$j(this).css('color', '#000');
				});

		});