// (c) 2011 SyriaTruth.org
// Javaqscript Loader
SkinPath = '/Portals/_Default/Skins/Syriatruth/';
jQuery(document).ready(function () {
    // ColorBox
    if (jQuery('a').hasClass('colorbox')) {
        jQuery.requireScript(SkinPath + 'js/jquery.colorbox-min.js', function () {
            jQuery("a.colorbox").colorbox({ photo: true, previous: 'vorige', next: 'volgende' });
        });

    }
	// HighCharts
	if (jQuery('#slider1').length) {
		jQuery.requireScript(SkinPath + 'js/jquery.carouFredSel-4.5.1-packed.js', function () {
			jQuery('#slider1').bxSlider({    
			displaySlideQty: 1,    
			moveSlideQty: 1,
			controls: true,
			auto: 'play'
			});
		});
	}
});

