$(document).ready(function(){
	if ($.browser.msie && $.browser.version < 8) $('#chat').css('margin-left', '-952px');

	$('#people-scroller').galleryView({
		filmstrip_size: 11,
		frame_width: 72,
		frame_height: 67,
		background_color: 'transparent',
		nav_theme: 'moml',
		border: 'none',
		show_captions:true,
		caption_text_color: 'black',
		transition_interval: 0
	});
	$('#people-scroller .nav-next').wrap('<div class="next-wrap"></div>');
	$('#people-scroller .nav-prev').wrap('<div class="prev-wrap"></div>');

	$('.filmstrip li').hover(function(){
		if ($.browser.msie) $('.caption span', this).stop(false, true).fadeIn(); // if IE, add some code for smooth tooltip fade
		$('.caption', this).stop(false, true).fadeIn();
	}, function(){
		if ($.browser.msie) $('.caption span', this).stop(false, true).fadeOut(); // if IE, add some code for smooth tooltip fade
		$('.caption', this).stop(false, true).fadeOut();
	});


	$('.portrait-gal img').mouseover(function(){
		$(this).siblings('.caption').fadeIn();
	});

	$('.th-gallery .caption').mouseout(function(){
		$(this).fadeOut();
	});

	$('.filmstrip .caption').bind("click",(function(selected){
		var children = $(this).parent().children();
		var img = children.closest("img");
		var urlforward = img.attr("url")
		window.location=urlforward;
	}));
});

var profileHead = {
    loadImg: function(profileId,index,imagePath){
        $('#hero').load('/friend/head/?imgPath='+imagePath+'&profileId='+profileId+'&imgIndex='+index, function() {});
    }
};
