$(document).ready(function(){
	
	if( $("body").find('.startpage').length) {
	
		$(document).mousemove(function(e){
	
			$("#follower").show();
	
			$("#follower").css({
	
				top: (e.pageY + 15) + "px",
	
				left: (e.pageX + 15) + "px"
	
			});
	
		});
		
		$('.startpage .image img').bind('click', function() {
			window.location.href="http://www.iconicmanagement.com/women/";	
		});
		
	
	}

	
	
	$('.polaroids_btn').bind('click', function() {
		replace_detail();
	});
	
	$('.video_btn').bind('click', function() {
		replace_detail();
	});
	
	$('.biographie_btn').bind('click', function() {
		
		if( $('#biographie').find('<p>').length ) {
		
		} else {
			$('#biographie').html('<div class="text_col text_third"><p>No content at this time.<br/><br/></p></div>')
		}
		
		replace_detail();
	});
	
	$('.print_btn').bind('click', function() {
		replace_detail();
	});
	
	
});
