var $jq = jQuery.noConflict();

$jq(document).ready(function() {
	$jq('#page-images').cycle({ fx: 'fade', random: 1, speed: 2500});
    $jq('a[href^=http]').click( function() { 
    	if (this.href != 'http://www.hph2011.com/')
    	{
    		window.open(this.href); 
    		return false; 
    	}
    });
    var options = {
        	overlayOpacity: '0.7',
        	overlayColor: '#000',
        	titleShow: false,
        	type: 'iframe',
        	width: 640,
        	height: 480
        };
    var options2 = {
        	overlayOpacity: '0.7',
        	overlayColor: '#000',
        	titleShow: false,
        	type: 'iframe',
        	width: 800,
        	height: 560
        };
    $jq("a[href*='conference-partners/scientific-committee/']").fancybox(options);
    $jq("a[href*='conference-programme/wednesday']").fancybox(options2);
    $jq("a[href*='conference-programme/thursday']").fancybox(options2);
    $jq("a[href*='conference-programme/friday']").fancybox(options2);
    
});

