var $j = jQuery.noConflict();

$j(document).ready(function() {

	$j('#header-right').cycle();



	$j('#bookmark img').css('opacity', '1');

	$j('#bookmark img').hover(function() {
		$j(this).stop().animate({
			opacity: 0.5
			}, 250);
		},

	function() {
		$j(this).stop().animate({
			opacity: 1
			}, 250);
		});

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

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


});