/* Iterates trough all divs marked as jQueryTab or jQueryAccordion to enable jQuery UI */
jQuery(document).ready(function() {
	jQuery("div.jQueryTab").each(function(i) {
		jQuery(this).tabs();							  
	});
	jQuery("div.jQueryAccordion").each(function(i) {
		jQuery(this).accordion();							  
	});
});
/* QuickFix for L/TopRight ad */
jQuery(document).ready(function() {
	var top1offset = jQuery('#target-ad_Top1').offset();
	var top1height = jQuery('#target-ad_Top1').height();
	var top1width = jQuery('#target-ad_Top1').width();

	jQuery('#oas-ad_TopRight').show().css( 'left',  (top1offset.left + top1width) + 'px' ).css('top', (top1offset.top)  + 'px');
});

jQuery(window).resize(function() {
	var top1offset = jQuery('#target-ad_Top1').offset();
	var top1height = jQuery('#target-ad_Top1').height();
	var top1width = jQuery('#target-ad_Top1').width();
	
	jQuery('#oas-ad_TopRight').show().css( 'left',  (top1offset.left + top1width) + 'px' ).css('top', (top1offset.top)  + 'px');
});