$(document).ready(function () {
	function formatText(index, panel) {
	    return index + "";
	}
	if ($('#slider').length)
		$('#slider').anythingSlider({
		    easing: "easeInOutExpo",
		    // Anything other than "linear" or "swing" requires the easing plugin
		    autoPlay: false,
		    // This turns off the entire FUNCTIONALY, not just if it starts running or not.
		    delay: 5000,
		    // How long between slide transitions in AutoPlay mode
		    startStopped: false,
		    // If autoPlay is on, this can force it to start stopped
		    animationTime: 600,
		    // How long the slide transition takes
		    hashTags: false,
		    // Should links change the hashtag in the URL?
		    buildNavigation: true,
		    // If true, builds and list of anchor links to link to each slide
		    pauseOnHover: false,
		    // If true, and autoPlay is enabled, the show will pause on hover
		    startText: "Go",
		    // Start text
		    stopText: "Stop",
		    // Stop text
		    navigationFormatter: formatText // Details at the top of the file on this use (advanced use)
		});

	$('.searchInput, #session_login').click(function () {
	    if (this.value == this.defaultValue) {
	        this.value = '';
	    }
	});
	$('.searchInput, #session_login').blur(function () {
	    if (this.value == '') {
	        this.value = this.defaultValue;
	    }
	});
	$('.information').each(function () {
        if ($.browser.msie && $.browser.version == 6) {
		var position = $(this).children('.informationWrapper').children('h3').position();
		$(this).children('.leftMiddle').height($(this).height()+2);
	

		$(this).children('.informationWrapper').children('.rating').css("top",position.top+35);
           
        }
    });
	$('#password-clear').show();
	$('#session_password').hide();

	$('#password-clear').focus(function() {
	    $('#password-clear').hide();
	    $('#session_password').show();
	    $('#session_password').focus();
	});
	$('#session_password').blur(function() {
	    if($('#session_password').val() == '') {
	        $('#password-clear').show();
	        $('#session_password').hide();
	    }
	});
	
	$(".userPicsList li .wrapper").click(function () {
     $(this).children('dt').attr('href');
		window.location=$(this).children().children().children('a').attr('href');

	 $(this).parent().parent().children('.link').children().html('reply');
      
    });
	
})