$(document).ready(function() { 
   options = {
   	target:        '#voting', 
      resetForm: true
   };
   $('#votingForm').ajaxForm(options); 
   
   $("#abuse_form").hide();
	$("#abuse_form_button").toggle( function () { 
	$("#abuse_form").slideDown("fast");}, 
	function () {
	$("#abuse_form").slideUp("fast");} 
	);
});

$(function(){
  $('#tab1').tabSlideOut({
    tabHandle: '#handle1',
    pathToTabImage: '/i/tab1.png',
    imageHeight: '100px',
    imageWidth: '23px',
    tabLocation: 'left',
    speed: 1,
    action: 'hover',
    topPos: '360px',
    fixedPosition: true
   });
  $('#tab2').tabSlideOut({
    tabHandle: '#handle2',
    pathToTabImage: '/i/tab2.png',
    imageHeight: '100px',
    imageWidth: '23px',
    tabLocation: 'left',
    speed: 1,
    action: 'hover',
    topPos: '255px',
    fixedPosition: true
   });
  $('#tab3').tabSlideOut({
    tabHandle: '#handle3',
    pathToTabImage: '/i/tab3.png',
    imageHeight: '100px',
    imageWidth: '23px',
    tabLocation: 'left',
    speed: 5,
    action: 'hover',
    topPos: '150px',
    fixedPosition: true
   });
  $('#tab4').tabSlideOut({
    tabHandle: '#handle4',
    pathToTabImage: '/i/tab4.png',
    imageHeight: '100px',
    imageWidth: '23px',
    tabLocation: 'left',
    speed: 5,
    action: 'hover',
    topPos: '43px',
    fixedPosition: true
   });
});

