$(document).ready(function(){	

	/* slider */
  $("#slider").carouFredSel({
	  items 		: 1,
	  direction: "up",
	  scroll: {
		duration: 1000,
		pauseOnHover: true
	  },
	  pagination: {
		  container: '#bullets'
	  }
  });
  
  /* external links */
  $(".external").click(function(){
	  return !window.open(this.href);
  });
  
  /* colorbox */
  $("a[rel='lightbox']").colorbox();
  $("a[class='lightbox']").colorbox();

});

function popitup(url) {
	newwindow = window.open(url,'name','height=200,width=150');
	if (window.focus) { newwindow.focus() }
	return false;
}
