// JavaScript Document

    $(function () {
        // basic version is: $('div.demo marquee').marquee() - but we're doing some sexy extras
        
        $('div.mrquee marquee').marquee('pointer').mouseover(function () {
            $(this).trigger('stop');
        }).mouseout(function () {
            $(this).trigger('start');
        }).mousemove(function (event) {
            if ($(this).data('drag') == true) {
                this.scrollLeft = $(this).data('scrollX') + ($(this).data('x') - event.clientX);
            }
        }).mousedown(function (event) {
            $(this).data('drag', true).data('x', event.clientX).data('scrollX', this.scrollLeft);
        }).mouseup(function () {
            $(this).data('drag', false);
        });
    });

    jQuery(document).ready(function($) {
      $(".tweet").tweet({
        join_text: "auto",
        username: "bakoeltiket",
        avatar_size: 20,
        count: 1,
        auto_join_text_default: ", ", 
        auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied",
        auto_join_text_url: "we were checking out",
        loading_text: ""
      });
     })

    jQuery(document).ready(function($) {
      $(".tweet2").tweet({
        join_text: "auto",
        username: "bakoeltiket",
        avatar_size: 20,
        count: 10,
        auto_join_text_default: ", ", 
        auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied",
        auto_join_text_url: "we were checking out",
        loading_text: "loading tweets..."
      });
     })

function show()
{
$(".twitt_list").slideDown("slow");
}

function hide()
{
$(".twitt_list").slideUp("slow");
}

	$(document).ready(function() {
    	$('.slideshow').cycle({
			fx: 'fade'
		});
	});
