/**
 * @author dondon
 */
$(document).ready(function(){
	$('.content-sections').corner('top 5px');	
	$('.reqvotebtn').click(function(){
		$.post(
				pageURL+"/submitvote",
				{tripattractionid:$(this).val()},
				function(data){
					if(data=="AUTH_ERROR"){
						try{
							updateModalMessage('You have to login to be able to vote.');
							$("#dialogMessage").dialog('open');							
						} catch(e){
							alert('You have to login to be able to vote.');
						}
					}else if(data=="OK"){
						//$(this).parents(".ras_req_img").html('<img src="'+baseURL+'resources/request/images/great-btn.png" />');
						window.location.reload();
					} else {
						try{
							updateModalMessage('Request failed. Please try again later.');
							$("#dialogMessage").dialog('open');							
						} catch(e){
							alert('Request failed. Please try again later.');
						}
					}
				}
		);
	});	
	$("#get_it_err").click(
	function(){
		alert('Sorry, you need '+ siteconfig.AWARD.GET_ATTRACTION +' dollotrips to get this attraction. You can buy dollotrips or make actions on the website that will gives you !');
	});
});
