$(document).ready(function(){  
	var page_width = $(window).width(); 
	var page_height = $(window).height(); 
	if(page_width > 1400){
		$('.see_our_video').html('<img src="media/images/see_our_video.png" style="position: absolute; margin-top: 60px; margin-left: 20px;" />');
	}
	

	
	$(".button_stat").hover(function() {
		$(this).attr("src","/media/images/finance-stats_hover.png");
			}, function() {
		$(this).attr("src","/media/images/finance-stats.png");
	});
	
	$(".button_delete").hover(function() {
		$(this).attr("src","/media/images/actions-delete-big-1_hover.png");
			}, function() {
		$(this).attr("src","/media/images/actions-delete-big-1.png");
	});
	
}); 

$(function(){
	$(".uniform").uniform();
});
$('.create_tooltip').corner("round 8px");
$('.validation_fail').corner("round 4px");
$('.validation_success').corner("round 4px");
$('.information_box').corner("round 5px");
$('.button_wrapper').corner("round 5px");
$('.validation_info').corner("round 5px");
$('.counter_buttons').corner("round 5px");


function confirm_delete(url)
{
	var where_to= confirm("Are you sure you want to delete this button?");
	if (where_to== true)
	{
		window.location=url;
	}
	else
	{
		return false;
	}
}

