$(document).ready(function() {
	$('.scroll-pane').jScrollPane(
			{
				showArrows: true,
				verticalDragMinHeight: 47,
				verticalDragMaxHeight: 47,
				autoReinitialise: true
			});
	
	$("a[rel='photo']").colorbox();
	
	$(".add_vote").click(function(){
		var dataString = 'id='+$(this).attr('rel');
		$('.add_vote').remove();
		$.ajax({
			 type: "POST",
			 url: '/voteplus',
			 data: dataString,
			 cache: false,

			 success: function(data)
			 {
				 $('#votes_'+$(this).attr('rel')+' span').text(1*$('#votes_'+$(this).attr('rel')+' span').text()+1);
			 } 
			 });
	    return false;
	});
	
	$(".tree").hover(function(){
        var id = $(this).attr('id');
        $('#tree_'+id).show();
        $('#sym_'+id).css('background-image','url(/uploads/images/star2.png)');
    },
    function(){
        var id = $(this).attr('id');
        $('#tree_'+id).hide();
        $('#sym_'+id).css('background-image','url(/uploads/images/star.png)');
    });
	
});

$(function(){
    $('input.datetimepicker').live('focus', function() {
        $(this).datepicker();
    });
});

