$(document).ready(function(e) {

$('#popup-post .holder:first').wrap("<div id='mainClose' />");
$('#mainClose').prepend('<div id="imageClose" />');
var left = $('#popup-post .holder:first').width()*1.18;
$('#imageClose').css({'color':'red',
                      'position':'absolute',
                     'top':'37px',
                     'left':left,
                     'background':'url("../wp-content/themes/dr_bartosh/images/close.png") no-repeat 0% 0%'


}).width(40).height(40);




$('#popup-ask .holder:first').wrap("<div id='mainClose1' />");
$('#mainClose1').prepend('<div id="imageClose1" />');
var left = $('#popup-ask .holder:first').width()*1.18;
$('#imageClose1').css({'color':'red',
                      'position':'absolute',
                     'top':'37px',
                     'left':left,
                     'background':'url("../wp-content/themes/dr_bartosh/images/close.png") no-repeat 0% 0%'


}).width(40).height(40);



$('#popup-appointments .holder:first').wrap("<div id='mainClose2' />");
$('#mainClose2').prepend('<div id="imageClose2" />');
var left = $('#popup-appointments .holder:first').width()*1.18;
$('#imageClose2').css({'color':'red',
                      'position':'absolute',
                     'top':'37px',
                     'left':left,
                     'background':'url("../wp-content/themes/dr_bartosh/images/close.png") no-repeat 0% 0%'


}).width(40).height(40);


$('[id^="popup"]').find('[id^="imageClose"]').live('click',function(e){
	$('[id^="imageClose"]').parents('[id^="popup"]').hide();
	$('.fader').hide();
	
});


$('.btn-ask-question, .btn-appointments, .btn-write-a-review').live('click',function(e){
	$('.fader').show();
});



});


