// Emulation target_blank
jQuery(document).ready(function(){
	    jQuery("._blank a").click(function(){
	        window.open(this.href);
	        return false;
	    });
	});	
	
// First h1, h2, h3, h4, h5, h6 without top-margin
jQuery(document).ready(function(){
	    jQuery(".content-page :header:first-child").addClass("h-first-child");
	});

// Datepicker
window.onload = function(){
	jQuery("#datepicker1").add('#datepicker2').datepicker({
		showOn: 'button',
		buttonImage: '/img/calendar.gif',
		buttonImageOnly: true,
		showOn: 'both'
	});
	$('#ui-datepicker-div').hide();
};

jQuery(document).ready(function(){
	    $('div.wysiwyg img').each(function() {
			$(this).css('margin',parseInt($(this).attr('vspace'))+'px '+parseInt($(this).attr('hspace'))+'px');
			$(this).css('border',parseInt($(this).attr('border'))+'px solid #4C4C4C');
		});
	});
