// JavaScript Document
  $(document).ready(function(){
    $(".cb6080").colorbox({transition:'elastic', speed:'1000', width:"60%", height:"80%", opacity: '0.65'});
    $(".gmaps").colorbox({iframe: true, transition:'elastic', speed:'1000', width:"800px", height:"600px", opacity: '0.65'});
	$(".liveres").colorbox({iframe: true, transition:'elastic', speed:'1000', width:"538px", height:"488px", opacity: '0.65'});
	$('a.cbox').colorbox({innerWidth:'320', innerHeight: '444', opacity: '0.65'});
    $("a[rel^='cbox']").colorbox({transition:'elastic', speed:'1000', height:"90%", opacity: '0.65'}); // Select all links that contains cbox in the attribute rel
    $("#upperblockimages").cycle({speed: 3000, random: 1, timeout: 6000});

	//Collapser items	
	$('.panel1').hide();
	$('.panel2').hide();
	$('.panel3').hide();
	$('.collapse1').collapser({target: 'next', effect: 'slide', changeText: 0,	expandClass: 'expIco', collapseClass: 'collIco'}, function(){$('.panel1').slideUp();});
	$('.collapse2').collapser({target: 'next', effect: 'slide', changeText: 0,	expandClass: 'expIco', collapseClass: 'collIco'}, function(){$('.panel2').slideUp();});
	$('.collapse3').collapser({target: 'next', effect: 'slide', changeText: 0,	expandClass: 'expIco', collapseClass: 'collIco'}, function(){$('.panel3').slideUp();});

  });
